forked from Minki/linux
[PATCH] ibmtr probe is __devinit, not __init
used by ->attach() in pcmcia analog Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Acked-by: Jeff Garzik <jeff@garzik.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
04ff97086b
commit
abf0437b42
@ -138,7 +138,7 @@ static const struct ethtool_ops netdev_ethtool_ops = {
|
||||
|
||||
======================================================================*/
|
||||
|
||||
static int ibmtr_attach(struct pcmcia_device *link)
|
||||
static int __devinit ibmtr_attach(struct pcmcia_device *link)
|
||||
{
|
||||
ibmtr_dev_t *info;
|
||||
struct net_device *dev;
|
||||
@ -217,7 +217,7 @@ static void ibmtr_detach(struct pcmcia_device *link)
|
||||
#define CS_CHECK(fn, ret) \
|
||||
do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
|
||||
|
||||
static int ibmtr_config(struct pcmcia_device *link)
|
||||
static int __devinit ibmtr_config(struct pcmcia_device *link)
|
||||
{
|
||||
ibmtr_dev_t *info = link->priv;
|
||||
struct net_device *dev = info->dev;
|
||||
|
@ -346,7 +346,7 @@ static void ibmtr_cleanup_card(struct net_device *dev)
|
||||
* which references it.
|
||||
****************************************************************************/
|
||||
|
||||
static int __init ibmtr_probe(struct net_device *dev)
|
||||
static int __devinit ibmtr_probe(struct net_device *dev)
|
||||
{
|
||||
int i;
|
||||
int base_addr = dev->base_addr;
|
||||
@ -366,7 +366,7 @@ static int __init ibmtr_probe(struct net_device *dev)
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
int __init ibmtr_probe_card(struct net_device *dev)
|
||||
int __devinit ibmtr_probe_card(struct net_device *dev)
|
||||
{
|
||||
int err = ibmtr_probe(dev);
|
||||
if (!err) {
|
||||
|
Loading…
Reference in New Issue
Block a user