diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-01-14 19:14:31 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-31 10:02:39 -0500 |
commit | 0e0fad8f71a8a23fad223b7d72b4ba06d57f764f (patch) | |
tree | fd73294166cb419200e6439be9dd7841a2bcf554 /drivers/pcmcia/ds.c | |
parent | 1540eec5e5549b2e41704ce77f3f4ba880d2434c (diff) |
[PATCH] pcmcia: size reduction if ioctl isn't compiled
If the kernel is configured to not include the deprecated PCMCIA ioctl,
some code doesn't need to be built.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/ds.c')
-rw-r--r-- | drivers/pcmcia/ds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c index 4d11b35d4c37..211aa84353fc 100644 --- a/drivers/pcmcia/ds.c +++ b/drivers/pcmcia/ds.c | |||
@@ -835,9 +835,11 @@ static int pcmcia_bus_match(struct device * dev, struct device_driver * drv) { | |||
835 | struct pcmcia_driver * p_drv = to_pcmcia_drv(drv); | 835 | struct pcmcia_driver * p_drv = to_pcmcia_drv(drv); |
836 | struct pcmcia_device_id *did = p_drv->id_table; | 836 | struct pcmcia_device_id *did = p_drv->id_table; |
837 | 837 | ||
838 | #ifdef CONFIG_PCMCIA_IOCTL | ||
838 | /* matching by cardmgr */ | 839 | /* matching by cardmgr */ |
839 | if (p_dev->cardmgr == p_drv) | 840 | if (p_dev->cardmgr == p_drv) |
840 | return 1; | 841 | return 1; |
842 | #endif | ||
841 | 843 | ||
842 | while (did && did->match_flags) { | 844 | while (did && did->match_flags) { |
843 | if (pcmcia_devmatch(p_dev, did)) | 845 | if (pcmcia_devmatch(p_dev, did)) |