diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 09:23:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-03 11:16:42 -0800 |
commit | ff76a3cca3a2f8664e0625cb4d75601ff9ccde76 (patch) | |
tree | f346285f184c29141eaa7a740286663ed2993b43 /drivers/net/ethernet/chelsio/cxgb/tp.c | |
parent | d289f864601eb3678824ba3c0b15217af79171e0 (diff) | |
download | op-kernel-dev-ff76a3cca3a2f8664e0625cb4d75601ff9ccde76.zip op-kernel-dev-ff76a3cca3a2f8664e0625cb4d75601ff9ccde76.tar.gz |
chelsio: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev*
markings will be going away.
Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net/ethernet/chelsio/cxgb/tp.c')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb/tp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb/tp.c b/drivers/net/ethernet/chelsio/cxgb/tp.c index 8bed4a5..b146aca 100644 --- a/drivers/net/ethernet/chelsio/cxgb/tp.c +++ b/drivers/net/ethernet/chelsio/cxgb/tp.c @@ -55,7 +55,7 @@ void t1_tp_destroy(struct petp *tp) kfree(tp); } -struct petp *__devinit t1_tp_create(adapter_t * adapter, struct tp_params *p) +struct petp *t1_tp_create(adapter_t *adapter, struct tp_params *p) { struct petp *tp = kzalloc(sizeof(*tp), GFP_KERNEL); |