Commit a78f4dd3 authored by Dominik Brodowski's avatar Dominik Brodowski

[PATCH] pcmcia: rename pcmcia_device.state

Rename pcmcia_device.state (which is used in very few places) to p_state
in order to avoid a namespace collision when moving the deprecated
dev_link_t into struct pcmcia_device
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
parent 70294b46
...@@ -390,7 +390,7 @@ static int pcmcia_device_probe(struct device * dev) ...@@ -390,7 +390,7 @@ static int pcmcia_device_probe(struct device * dev)
goto put_dev; goto put_dev;
} }
p_dev->state &= ~CLIENT_UNBOUND; p_dev->p_state &= ~CLIENT_UNBOUND;
ret = p_drv->probe(p_dev); ret = p_drv->probe(p_dev);
if (ret) if (ret)
...@@ -433,17 +433,17 @@ static int pcmcia_device_remove(struct device * dev) ...@@ -433,17 +433,17 @@ static int pcmcia_device_remove(struct device * dev)
p_drv->remove(p_dev); p_drv->remove(p_dev);
/* check for proper unloading */ /* check for proper unloading */
if (p_dev->state & (CLIENT_IRQ_REQ|CLIENT_IO_REQ|CLIENT_CONFIG_LOCKED)) if (p_dev->p_state & (CLIENT_IRQ_REQ|CLIENT_IO_REQ|CLIENT_CONFIG_LOCKED))
printk(KERN_INFO "pcmcia: driver %s did not release config properly\n", printk(KERN_INFO "pcmcia: driver %s did not release config properly\n",
p_drv->drv.name); p_drv->drv.name);
for (i = 0; i < MAX_WIN; i++) for (i = 0; i < MAX_WIN; i++)
if (p_dev->state & CLIENT_WIN_REQ(i)) if (p_dev->p_state & CLIENT_WIN_REQ(i))
printk(KERN_INFO "pcmcia: driver %s did not release windows properly\n", printk(KERN_INFO "pcmcia: driver %s did not release windows properly\n",
p_drv->drv.name); p_drv->drv.name);
/* references from pcmcia_probe_device */ /* references from pcmcia_probe_device */
p_dev->state = CLIENT_UNBOUND; p_dev->p_state = CLIENT_UNBOUND;
pcmcia_put_dev(p_dev); pcmcia_put_dev(p_dev);
module_put(p_drv->owner); module_put(p_drv->owner);
...@@ -472,7 +472,7 @@ static void pcmcia_card_remove(struct pcmcia_socket *s) ...@@ -472,7 +472,7 @@ static void pcmcia_card_remove(struct pcmcia_socket *s)
} }
p_dev = list_entry((&s->devices_list)->next, struct pcmcia_device, socket_device_list); p_dev = list_entry((&s->devices_list)->next, struct pcmcia_device, socket_device_list);
list_del(&p_dev->socket_device_list); list_del(&p_dev->socket_device_list);
p_dev->state |= CLIENT_STALE; p_dev->p_state |= CLIENT_STALE;
spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags); spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags);
device_unregister(&p_dev->dev); device_unregister(&p_dev->dev);
...@@ -602,7 +602,7 @@ struct pcmcia_device * pcmcia_device_add(struct pcmcia_socket *s, unsigned int f ...@@ -602,7 +602,7 @@ struct pcmcia_device * pcmcia_device_add(struct pcmcia_socket *s, unsigned int f
sprintf (p_dev->devname, "pcmcia%s", p_dev->dev.bus_id); sprintf (p_dev->devname, "pcmcia%s", p_dev->dev.bus_id);
/* compat */ /* compat */
p_dev->state = CLIENT_UNBOUND; p_dev->p_state = CLIENT_UNBOUND;
spin_lock_irqsave(&pcmcia_dev_list_lock, flags); spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
......
...@@ -476,8 +476,8 @@ int pcmcia_release_configuration(struct pcmcia_device *p_dev) ...@@ -476,8 +476,8 @@ int pcmcia_release_configuration(struct pcmcia_device *p_dev)
config_t *c = p_dev->function_config; config_t *c = p_dev->function_config;
int i; int i;
if (p_dev->state & CLIENT_CONFIG_LOCKED) { if (p_dev->p_state & CLIENT_CONFIG_LOCKED) {
p_dev->state &= ~CLIENT_CONFIG_LOCKED; p_dev->p_state &= ~CLIENT_CONFIG_LOCKED;
if (--(s->lock_count) == 0) { if (--(s->lock_count) == 0) {
s->socket.flags = SS_OUTPUT_ENA; /* Is this correct? */ s->socket.flags = SS_OUTPUT_ENA; /* Is this correct? */
s->socket.Vpp = 0; s->socket.Vpp = 0;
...@@ -516,10 +516,10 @@ int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req) ...@@ -516,10 +516,10 @@ int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req)
struct pcmcia_socket *s = p_dev->socket; struct pcmcia_socket *s = p_dev->socket;
config_t *c = p_dev->function_config; config_t *c = p_dev->function_config;
if (!(p_dev->state & CLIENT_IO_REQ)) if (!(p_dev->p_state & CLIENT_IO_REQ))
return CS_BAD_HANDLE; return CS_BAD_HANDLE;
p_dev->state &= ~CLIENT_IO_REQ; p_dev->p_state &= ~CLIENT_IO_REQ;
if ((c->io.BasePort1 != req->BasePort1) || if ((c->io.BasePort1 != req->BasePort1) ||
(c->io.NumPorts1 != req->NumPorts1) || (c->io.NumPorts1 != req->NumPorts1) ||
...@@ -542,9 +542,9 @@ int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req) ...@@ -542,9 +542,9 @@ int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
struct pcmcia_socket *s = p_dev->socket; struct pcmcia_socket *s = p_dev->socket;
config_t *c= p_dev->function_config; config_t *c= p_dev->function_config;
if (!(p_dev->state & CLIENT_IRQ_REQ)) if (!(p_dev->p_state & CLIENT_IRQ_REQ))
return CS_BAD_HANDLE; return CS_BAD_HANDLE;
p_dev->state &= ~CLIENT_IRQ_REQ; p_dev->p_state &= ~CLIENT_IRQ_REQ;
if (c->state & CONFIG_LOCKED) if (c->state & CONFIG_LOCKED)
return CS_CONFIGURATION_LOCKED; return CS_CONFIGURATION_LOCKED;
...@@ -576,7 +576,7 @@ int pcmcia_release_window(window_handle_t win) ...@@ -576,7 +576,7 @@ int pcmcia_release_window(window_handle_t win)
if ((win == NULL) || (win->magic != WINDOW_MAGIC)) if ((win == NULL) || (win->magic != WINDOW_MAGIC))
return CS_BAD_HANDLE; return CS_BAD_HANDLE;
s = win->sock; s = win->sock;
if (!(win->handle->state & CLIENT_WIN_REQ(win->index))) if (!(win->handle->p_state & CLIENT_WIN_REQ(win->index)))
return CS_BAD_HANDLE; return CS_BAD_HANDLE;
/* Shut down memory window */ /* Shut down memory window */
...@@ -590,7 +590,7 @@ int pcmcia_release_window(window_handle_t win) ...@@ -590,7 +590,7 @@ int pcmcia_release_window(window_handle_t win)
kfree(win->ctl.res); kfree(win->ctl.res);
win->ctl.res = NULL; win->ctl.res = NULL;
} }
win->handle->state &= ~CLIENT_WIN_REQ(win->index); win->handle->p_state &= ~CLIENT_WIN_REQ(win->index);
win->magic = 0; win->magic = 0;
...@@ -708,7 +708,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev, ...@@ -708,7 +708,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev,
} }
c->state |= CONFIG_LOCKED; c->state |= CONFIG_LOCKED;
p_dev->state |= CLIENT_CONFIG_LOCKED; p_dev->p_state |= CLIENT_CONFIG_LOCKED;
return CS_SUCCESS; return CS_SUCCESS;
} /* pcmcia_request_configuration */ } /* pcmcia_request_configuration */
EXPORT_SYMBOL(pcmcia_request_configuration); EXPORT_SYMBOL(pcmcia_request_configuration);
...@@ -754,7 +754,7 @@ int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req) ...@@ -754,7 +754,7 @@ int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req)
c->io = *req; c->io = *req;
c->state |= CONFIG_IO_REQ; c->state |= CONFIG_IO_REQ;
p_dev->state |= CLIENT_IO_REQ; p_dev->p_state |= CLIENT_IO_REQ;
return CS_SUCCESS; return CS_SUCCESS;
} /* pcmcia_request_io */ } /* pcmcia_request_io */
EXPORT_SYMBOL(pcmcia_request_io); EXPORT_SYMBOL(pcmcia_request_io);
...@@ -850,7 +850,7 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req) ...@@ -850,7 +850,7 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)
s->irq.Config++; s->irq.Config++;
c->state |= CONFIG_IRQ_REQ; c->state |= CONFIG_IRQ_REQ;
p_dev->state |= CLIENT_IRQ_REQ; p_dev->p_state |= CLIENT_IRQ_REQ;
#ifdef CONFIG_PCMCIA_PROBE #ifdef CONFIG_PCMCIA_PROBE
pcmcia_used_irq[irq]++; pcmcia_used_irq[irq]++;
...@@ -910,7 +910,7 @@ int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, window_h ...@@ -910,7 +910,7 @@ int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, window_h
if (!win->ctl.res) if (!win->ctl.res)
return CS_IN_USE; return CS_IN_USE;
} }
(*p_dev)->state |= CLIENT_WIN_REQ(w); (*p_dev)->p_state |= CLIENT_WIN_REQ(w);
/* Configure the socket controller */ /* Configure the socket controller */
win->ctl.map = w+1; win->ctl.map = w+1;
......
...@@ -166,7 +166,7 @@ struct pcmcia_device { ...@@ -166,7 +166,7 @@ struct pcmcia_device {
/* deprecated, a cleaned up version will be moved into this /* deprecated, a cleaned up version will be moved into this
struct soon */ struct soon */
dev_link_t *instance; dev_link_t *instance;
u_int state; u_int p_state;
/* information about this device */ /* information about this device */
u8 has_manf_id:1; u8 has_manf_id:1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment