diff options
Diffstat (limited to 'drivers/ide/legacy/ide-cs.c')
-rw-r--r-- | drivers/ide/legacy/ide-cs.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/ide/legacy/ide-cs.c b/drivers/ide/legacy/ide-cs.c index 3b5b55f85e23..70bb1b8bab09 100644 --- a/drivers/ide/legacy/ide-cs.c +++ b/drivers/ide/legacy/ide-cs.c | |||
@@ -81,7 +81,7 @@ static const char ide_major[] = { | |||
81 | }; | 81 | }; |
82 | 82 | ||
83 | typedef struct ide_info_t { | 83 | typedef struct ide_info_t { |
84 | dev_link_t link; | 84 | struct pcmcia_device *p_dev; |
85 | int ndev; | 85 | int ndev; |
86 | dev_node_t node; | 86 | dev_node_t node; |
87 | int hd; | 87 | int hd; |
@@ -106,7 +106,7 @@ static void ide_detach(struct pcmcia_device *p_dev); | |||
106 | static int ide_attach(struct pcmcia_device *p_dev) | 106 | static int ide_attach(struct pcmcia_device *p_dev) |
107 | { | 107 | { |
108 | ide_info_t *info; | 108 | ide_info_t *info; |
109 | dev_link_t *link; | 109 | dev_link_t *link = dev_to_instance(p_dev); |
110 | 110 | ||
111 | DEBUG(0, "ide_attach()\n"); | 111 | DEBUG(0, "ide_attach()\n"); |
112 | 112 | ||
@@ -114,7 +114,9 @@ static int ide_attach(struct pcmcia_device *p_dev) | |||
114 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 114 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
115 | if (!info) | 115 | if (!info) |
116 | return -ENOMEM; | 116 | return -ENOMEM; |
117 | link = &info->link; link->priv = info; | 117 | |
118 | info->p_dev = p_dev; | ||
119 | link->priv = info; | ||
118 | 120 | ||
119 | link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO; | 121 | link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO; |
120 | link->io.Attributes2 = IO_DATA_PATH_WIDTH_8; | 122 | link->io.Attributes2 = IO_DATA_PATH_WIDTH_8; |
@@ -124,9 +126,6 @@ static int ide_attach(struct pcmcia_device *p_dev) | |||
124 | link->conf.Attributes = CONF_ENABLE_IRQ; | 126 | link->conf.Attributes = CONF_ENABLE_IRQ; |
125 | link->conf.IntType = INT_MEMORY_AND_IO; | 127 | link->conf.IntType = INT_MEMORY_AND_IO; |
126 | 128 | ||
127 | link->handle = p_dev; | ||
128 | p_dev->instance = link; | ||
129 | |||
130 | link->state |= DEV_PRESENT | DEV_CONFIG_PENDING; | 129 | link->state |= DEV_PRESENT | DEV_CONFIG_PENDING; |
131 | ide_config(link); | 130 | ide_config(link); |
132 | 131 | ||
@@ -326,7 +325,7 @@ static void ide_config(dev_link_t *link) | |||
326 | info->node.major = ide_major[hd]; | 325 | info->node.major = ide_major[hd]; |
327 | info->node.minor = 0; | 326 | info->node.minor = 0; |
328 | info->hd = hd; | 327 | info->hd = hd; |
329 | link->dev = &info->node; | 328 | link->dev_node = &info->node; |
330 | printk(KERN_INFO "ide-cs: %s: Vpp = %d.%d\n", | 329 | printk(KERN_INFO "ide-cs: %s: Vpp = %d.%d\n", |
331 | info->node.dev_name, link->conf.Vpp / 10, link->conf.Vpp % 10); | 330 | info->node.dev_name, link->conf.Vpp / 10, link->conf.Vpp % 10); |
332 | 331 | ||