452962366c11a9126fabac8cb28af49c27464408 |
|
30-Aug-2011 |
Paul Gortmaker <paul.gortmaker@windriver.com> |
staging: Add module.h to more drivers implicitly using it. This 2nd batch of implicit module.h users only appeared when we removed the unnecessary module.h from include/linux/miscdevice.h [The 1st batch is already present in Greg's staging tree.] Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
/drivers/staging/cxt1e1/linux.c
|
18e9351e453fbcf445cb8ffdd2e106e0212166da |
|
07-Sep-2011 |
Yong Zhang <yong.zhang0@gmail.com> |
staging: irq: Remove IRQF_DISABLED This flag is a NOOP and can be removed now. Signed-off-by: Yong Zhang <yong.zhang0@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
3ec6080e2e5be05e6f7fbbe5ab20b0eab84e166b |
|
21-Jan-2011 |
Ralph Loader <suckfish@ihug.co.nz> |
staging: Fix some incorrect use of positive error codes. Use -E... instead of just E... in a few places where negative error codes are expected by a functions callers. These were found by grepping with coccinelle & then inspecting by hand to determine which were bugs. The staging/cxt1e1 driver appears to intentionally use positive E... error codes in some places, and negative -E... error codes in others, making it hard to know which is intended where - very likely I missed some problems in that driver. Signed-off-by: Ralph Loader <suckfish@ihug.co.nz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
b8b739941eb57ec4c5fc87a73e7e7b554cf395fb |
|
10-Dec-2010 |
Greg Kroah-Hartman <gregkh@suse.de> |
Staging: cxt1e1: rename global log_level variable The driver should not have such a generic global variable name. Reported-by: Zimny Lech <napohybelskurwysynom2010@gmail.com> Cc: Bob Beers <bob.beers@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
c694ed85eab4e7966cd83fca509ce27494e3e296 |
|
17-Oct-2010 |
Bob Beers <bob.beers@gmail.com> |
Staging: cxt1e1: multiple definition of max_mtu fix eliminate multiple definition of max_mtu by renaming with cxt1e1_ prefix, similarly rename max_mru Signed-off-by: Bob Beers <bbeers@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
9c770f3b881c5066ff014968473ffbbafee82247 |
|
26-May-2010 |
Jiri Kosina <jkosina@suse.cz> |
Staging: cxt1e1: remove code guarded by GENERIC_HDLC_VERSION Current linux kernel has GENERIC_HDLC_VERSION equal to 4, no need to have dead code in-kernel which was there for ancient kernel versions. Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
5749df14aef6d3fd7146f17e4f0c61526a53766e |
|
26-May-2010 |
Jiri Kosina <jkosina@suse.cz> |
Staging: cxt1e1: remove all code dependent on LINUX_VERSION_CODE Remove all code which is dead for in-kernel driver due to being ifdefed by LINUX_VERSION_CODE. While at it, also remove surrounding code which is commented out, or '#if 1' nops. Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
694a98073f83ce1c14e3c0bba182bfeba5c44f01 |
|
03-May-2010 |
Joe Perches <joe@perches.com> |
Staging: staging/cxt1e1: Convert bare printks to pr_<level> Added #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt A few line splits for long arguments A couple of embedded function names converted to "%s", __func__ Removed some uses of THIS_MODULE->name Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
e6e4d05d4d440f1989f696baa146263957593345 |
|
03-May-2010 |
Joe Perches <joe@perches.com> |
Staging: cxt1e1: fix cxt1e1 module names On Mon, 2010-05-03 at 10:09 -0700, Randy Dunlap wrote: > Lots of cxt1e1 source code uses THIS_MODULE->name, which won't build > when CONFIG_MODULES is not enabled, so use KBUILD_MODNAME instead. Perhaps a conversion to pr_<level> is better? Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
d87d909a45b7b6bf411559e85d386ef0a2f4bbae |
|
30-Apr-2010 |
Randy Dunlap <randy.dunlap@oracle.com> |
Staging: cxt1e1: use netdev_priv to fix build Fix cxt1e1 build error: drivers/staging/cxt1e1/linux.c:1195: error: 'struct net_device' has no member named 'priv' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: Bob Beers <bob.beers@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|
50ee11fe383255db8e5c3307319d470015616f27 |
|
04-Mar-2010 |
Bob Beers <bob.beers@gmail.com> |
staging: Add driver to support wanPMC-CxT1E1 card. Obviously still needs serious attention, but it compiles. Original author: Rick Dobbs Add driver to support wanPMC-CxT1E1 card. This card provides 1-4 ports of T1E1 in PMC form factor. Note, Rick doesn't want his email showing up as the "From:" author, but has given his blessing to have the code included in the kernel tree. Signed-off-by: Bob Beers <bob.beers@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/drivers/staging/cxt1e1/linux.c
|