diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-03-20 14:35:12 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-05-10 04:23:15 -0400 |
commit | ded6a1a341cb38c4cfeb09d3d01ffe16b5c804b3 (patch) | |
tree | c430b9dc1ee04ecbe39da798524684b2db779b0f /drivers/char/pcmcia/synclink_cs.c | |
parent | 317b6d63000b3cc48c43d582d76063500e531a6c (diff) |
pcmcia: dev_node removal (drivers with updated printk call)
As a second step, remove any usage of dev_node_t from drivers which
only wrote to this typedef/struct, except one printk() which can
easily be replaced by a dev_info()/dev_warn() call.
CC: Harald Welte <laforge@gnumonks.org>
CC: linux-ide@vger.kernel.org
CC: linux-wireless@vger.kernel.org
CC: netdev@vger.kernel.org
CC: linux-usb@vger.kernel.org
Acked-by: Karsten Keil <isdn@linux-pingi.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/char/pcmcia/synclink_cs.c')
-rw-r--r-- | drivers/char/pcmcia/synclink_cs.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c index 027690b70d2c..308903ec8bf8 100644 --- a/drivers/char/pcmcia/synclink_cs.c +++ b/drivers/char/pcmcia/synclink_cs.c | |||
@@ -220,7 +220,6 @@ typedef struct _mgslpc_info { | |||
220 | 220 | ||
221 | /* PCMCIA support */ | 221 | /* PCMCIA support */ |
222 | struct pcmcia_device *p_dev; | 222 | struct pcmcia_device *p_dev; |
223 | dev_node_t node; | ||
224 | int stop; | 223 | int stop; |
225 | 224 | ||
226 | /* SPPP/Cisco HDLC device parts */ | 225 | /* SPPP/Cisco HDLC device parts */ |
@@ -614,13 +613,8 @@ static int mgslpc_config(struct pcmcia_device *link) | |||
614 | info->io_base = link->io.BasePort1; | 613 | info->io_base = link->io.BasePort1; |
615 | info->irq_level = link->irq; | 614 | info->irq_level = link->irq; |
616 | 615 | ||
617 | /* add to linked list of devices */ | 616 | dev_info(&link->dev, "index 0x%02x:", |
618 | sprintf(info->node.dev_name, "mgslpc0"); | 617 | link->conf.ConfigIndex); |
619 | info->node.major = info->node.minor = 0; | ||
620 | link->dev_node = &info->node; | ||
621 | |||
622 | printk(KERN_INFO "%s: index 0x%02x:", | ||
623 | info->node.dev_name, link->conf.ConfigIndex); | ||
624 | if (link->conf.Attributes & CONF_ENABLE_IRQ) | 618 | if (link->conf.Attributes & CONF_ENABLE_IRQ) |
625 | printk(", irq %d", link->irq); | 619 | printk(", irq %d", link->irq); |
626 | if (link->io.NumPorts1) | 620 | if (link->io.NumPorts1) |