Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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: Dominik Brodowski <linux@dominikbrodowski.net>

+19 -19
+6 -6
drivers/pcmcia/ds.c
··· 390 390 goto put_dev; 391 391 } 392 392 393 - p_dev->state &= ~CLIENT_UNBOUND; 393 + p_dev->p_state &= ~CLIENT_UNBOUND; 394 394 395 395 ret = p_drv->probe(p_dev); 396 396 if (ret) ··· 433 433 p_drv->remove(p_dev); 434 434 435 435 /* check for proper unloading */ 436 - if (p_dev->state & (CLIENT_IRQ_REQ|CLIENT_IO_REQ|CLIENT_CONFIG_LOCKED)) 436 + if (p_dev->p_state & (CLIENT_IRQ_REQ|CLIENT_IO_REQ|CLIENT_CONFIG_LOCKED)) 437 437 printk(KERN_INFO "pcmcia: driver %s did not release config properly\n", 438 438 p_drv->drv.name); 439 439 440 440 for (i = 0; i < MAX_WIN; i++) 441 - if (p_dev->state & CLIENT_WIN_REQ(i)) 441 + if (p_dev->p_state & CLIENT_WIN_REQ(i)) 442 442 printk(KERN_INFO "pcmcia: driver %s did not release windows properly\n", 443 443 p_drv->drv.name); 444 444 445 445 /* references from pcmcia_probe_device */ 446 - p_dev->state = CLIENT_UNBOUND; 446 + p_dev->p_state = CLIENT_UNBOUND; 447 447 pcmcia_put_dev(p_dev); 448 448 module_put(p_drv->owner); 449 449 ··· 472 472 } 473 473 p_dev = list_entry((&s->devices_list)->next, struct pcmcia_device, socket_device_list); 474 474 list_del(&p_dev->socket_device_list); 475 - p_dev->state |= CLIENT_STALE; 475 + p_dev->p_state |= CLIENT_STALE; 476 476 spin_unlock_irqrestore(&pcmcia_dev_list_lock, flags); 477 477 478 478 device_unregister(&p_dev->dev); ··· 602 602 sprintf (p_dev->devname, "pcmcia%s", p_dev->dev.bus_id); 603 603 604 604 /* compat */ 605 - p_dev->state = CLIENT_UNBOUND; 605 + p_dev->p_state = CLIENT_UNBOUND; 606 606 607 607 608 608 spin_lock_irqsave(&pcmcia_dev_list_lock, flags);
+12 -12
drivers/pcmcia/pcmcia_resource.c
··· 476 476 config_t *c = p_dev->function_config; 477 477 int i; 478 478 479 - if (p_dev->state & CLIENT_CONFIG_LOCKED) { 480 - p_dev->state &= ~CLIENT_CONFIG_LOCKED; 479 + if (p_dev->p_state & CLIENT_CONFIG_LOCKED) { 480 + p_dev->p_state &= ~CLIENT_CONFIG_LOCKED; 481 481 if (--(s->lock_count) == 0) { 482 482 s->socket.flags = SS_OUTPUT_ENA; /* Is this correct? */ 483 483 s->socket.Vpp = 0; ··· 516 516 struct pcmcia_socket *s = p_dev->socket; 517 517 config_t *c = p_dev->function_config; 518 518 519 - if (!(p_dev->state & CLIENT_IO_REQ)) 519 + if (!(p_dev->p_state & CLIENT_IO_REQ)) 520 520 return CS_BAD_HANDLE; 521 521 522 - p_dev->state &= ~CLIENT_IO_REQ; 522 + p_dev->p_state &= ~CLIENT_IO_REQ; 523 523 524 524 if ((c->io.BasePort1 != req->BasePort1) || 525 525 (c->io.NumPorts1 != req->NumPorts1) || ··· 542 542 struct pcmcia_socket *s = p_dev->socket; 543 543 config_t *c= p_dev->function_config; 544 544 545 - if (!(p_dev->state & CLIENT_IRQ_REQ)) 545 + if (!(p_dev->p_state & CLIENT_IRQ_REQ)) 546 546 return CS_BAD_HANDLE; 547 - p_dev->state &= ~CLIENT_IRQ_REQ; 547 + p_dev->p_state &= ~CLIENT_IRQ_REQ; 548 548 549 549 if (c->state & CONFIG_LOCKED) 550 550 return CS_CONFIGURATION_LOCKED; ··· 576 576 if ((win == NULL) || (win->magic != WINDOW_MAGIC)) 577 577 return CS_BAD_HANDLE; 578 578 s = win->sock; 579 - if (!(win->handle->state & CLIENT_WIN_REQ(win->index))) 579 + if (!(win->handle->p_state & CLIENT_WIN_REQ(win->index))) 580 580 return CS_BAD_HANDLE; 581 581 582 582 /* Shut down memory window */ ··· 590 590 kfree(win->ctl.res); 591 591 win->ctl.res = NULL; 592 592 } 593 - win->handle->state &= ~CLIENT_WIN_REQ(win->index); 593 + win->handle->p_state &= ~CLIENT_WIN_REQ(win->index); 594 594 595 595 win->magic = 0; 596 596 ··· 708 708 } 709 709 710 710 c->state |= CONFIG_LOCKED; 711 - p_dev->state |= CLIENT_CONFIG_LOCKED; 711 + p_dev->p_state |= CLIENT_CONFIG_LOCKED; 712 712 return CS_SUCCESS; 713 713 } /* pcmcia_request_configuration */ 714 714 EXPORT_SYMBOL(pcmcia_request_configuration); ··· 754 754 755 755 c->io = *req; 756 756 c->state |= CONFIG_IO_REQ; 757 - p_dev->state |= CLIENT_IO_REQ; 757 + p_dev->p_state |= CLIENT_IO_REQ; 758 758 return CS_SUCCESS; 759 759 } /* pcmcia_request_io */ 760 760 EXPORT_SYMBOL(pcmcia_request_io); ··· 850 850 s->irq.Config++; 851 851 852 852 c->state |= CONFIG_IRQ_REQ; 853 - p_dev->state |= CLIENT_IRQ_REQ; 853 + p_dev->p_state |= CLIENT_IRQ_REQ; 854 854 855 855 #ifdef CONFIG_PCMCIA_PROBE 856 856 pcmcia_used_irq[irq]++; ··· 910 910 if (!win->ctl.res) 911 911 return CS_IN_USE; 912 912 } 913 - (*p_dev)->state |= CLIENT_WIN_REQ(w); 913 + (*p_dev)->p_state |= CLIENT_WIN_REQ(w); 914 914 915 915 /* Configure the socket controller */ 916 916 win->ctl.map = w+1;
+1 -1
include/pcmcia/ds.h
··· 166 166 /* deprecated, a cleaned up version will be moved into this 167 167 struct soon */ 168 168 dev_link_t *instance; 169 - u_int state; 169 + u_int p_state; 170 170 171 171 /* information about this device */ 172 172 u8 has_manf_id:1;