ds.h (03351ff4d897098a590cb247b6eebc470b8ecb5a) ds.h (e9fb13bfec7e017130ddc5c1b5466340470f4900)
1/*
2 * ds.h -- 16-bit PCMCIA core support
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * The initial developer of the original code is David A. Hinds

--- 42 unchanged lines hidden (view full) ---

51
52 int (*probe) (struct pcmcia_device *dev);
53 void (*remove) (struct pcmcia_device *dev);
54
55 int (*suspend) (struct pcmcia_device *dev);
56 int (*resume) (struct pcmcia_device *dev);
57
58 struct module *owner;
1/*
2 * ds.h -- 16-bit PCMCIA core support
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * The initial developer of the original code is David A. Hinds

--- 42 unchanged lines hidden (view full) ---

51
52 int (*probe) (struct pcmcia_device *dev);
53 void (*remove) (struct pcmcia_device *dev);
54
55 int (*suspend) (struct pcmcia_device *dev);
56 int (*resume) (struct pcmcia_device *dev);
57
58 struct module *owner;
59 struct pcmcia_device_id *id_table;
59 const struct pcmcia_device_id *id_table;
60 struct device_driver drv;
61 struct pcmcia_dynids dynids;
62};
63
64/* driver registration */
65int pcmcia_register_driver(struct pcmcia_driver *driver);
66void pcmcia_unregister_driver(struct pcmcia_driver *driver);
67

--- 208 unchanged lines hidden ---
60 struct device_driver drv;
61 struct pcmcia_dynids dynids;
62};
63
64/* driver registration */
65int pcmcia_register_driver(struct pcmcia_driver *driver);
66void pcmcia_unregister_driver(struct pcmcia_driver *driver);
67

--- 208 unchanged lines hidden ---