diff options
| author | Henne <henne@nachtwindheim.de> | 2010-03-25 08:05:32 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-03-25 14:58:02 -0400 |
| commit | f61bb62e3ed7634fe5b7dfd8c9a52e6b799f4023 (patch) | |
| tree | af41a661ad4eaa768044437a72e95635da1172c4 /drivers | |
| parent | a465870a808bccba63bf6da30a0b56a2a7abfa5c (diff) | |
isdn: Cleanup Sections in PCMCIA driver elsa
Compiling this driver gave a section mismatch,
so I reviewed the init/exit paths of the driver
and made the correct changes.
WARNING: drivers/isdn/hisax/built-in.o(.text+0x55e37): Section mismatch
in reference from the function elsa_cs_config() to the function
.devinit.text:hisax_init_pcmcia()
The function elsa_cs_config() references
the function __devinit hisax_init_pcmcia().
This is often because elsa_cs_config lacks a __devinit
annotation or the annotation of hisax_init_pcmcia is wrong.
Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
Acked-by: Karsten Keil <keil@b1-systems.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/isdn/hisax/elsa_cs.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/isdn/hisax/elsa_cs.c b/drivers/isdn/hisax/elsa_cs.c index c9a30b1c9237..c9f2279e21f5 100644 --- a/drivers/isdn/hisax/elsa_cs.c +++ b/drivers/isdn/hisax/elsa_cs.c | |||
| @@ -76,7 +76,7 @@ module_param(protocol, int, 0); | |||
| 76 | handler. | 76 | handler. |
| 77 | */ | 77 | */ |
| 78 | 78 | ||
| 79 | static int elsa_cs_config(struct pcmcia_device *link); | 79 | static int elsa_cs_config(struct pcmcia_device *link) __devinit ; |
| 80 | static void elsa_cs_release(struct pcmcia_device *link); | 80 | static void elsa_cs_release(struct pcmcia_device *link); |
| 81 | 81 | ||
| 82 | /* | 82 | /* |
| @@ -85,7 +85,7 @@ static void elsa_cs_release(struct pcmcia_device *link); | |||
| 85 | needed to manage one actual PCMCIA card. | 85 | needed to manage one actual PCMCIA card. |
| 86 | */ | 86 | */ |
| 87 | 87 | ||
| 88 | static void elsa_cs_detach(struct pcmcia_device *p_dev); | 88 | static void elsa_cs_detach(struct pcmcia_device *p_dev) __devexit; |
| 89 | 89 | ||
| 90 | /* | 90 | /* |
| 91 | A driver needs to provide a dev_node_t structure for each device | 91 | A driver needs to provide a dev_node_t structure for each device |
| @@ -121,7 +121,7 @@ typedef struct local_info_t { | |||
| 121 | 121 | ||
| 122 | ======================================================================*/ | 122 | ======================================================================*/ |
| 123 | 123 | ||
| 124 | static int elsa_cs_probe(struct pcmcia_device *link) | 124 | static int __devinit elsa_cs_probe(struct pcmcia_device *link) |
| 125 | { | 125 | { |
| 126 | local_info_t *local; | 126 | local_info_t *local; |
| 127 | 127 | ||
| @@ -166,7 +166,7 @@ static int elsa_cs_probe(struct pcmcia_device *link) | |||
| 166 | 166 | ||
| 167 | ======================================================================*/ | 167 | ======================================================================*/ |
| 168 | 168 | ||
| 169 | static void elsa_cs_detach(struct pcmcia_device *link) | 169 | static void __devexit elsa_cs_detach(struct pcmcia_device *link) |
| 170 | { | 170 | { |
| 171 | local_info_t *info = link->priv; | 171 | local_info_t *info = link->priv; |
| 172 | 172 | ||
| @@ -210,7 +210,7 @@ static int elsa_cs_configcheck(struct pcmcia_device *p_dev, | |||
| 210 | return -ENODEV; | 210 | return -ENODEV; |
| 211 | } | 211 | } |
| 212 | 212 | ||
| 213 | static int elsa_cs_config(struct pcmcia_device *link) | 213 | static int __devinit elsa_cs_config(struct pcmcia_device *link) |
| 214 | { | 214 | { |
| 215 | local_info_t *dev; | 215 | local_info_t *dev; |
| 216 | int i; | 216 | int i; |
| @@ -327,7 +327,7 @@ static struct pcmcia_driver elsa_cs_driver = { | |||
| 327 | .name = "elsa_cs", | 327 | .name = "elsa_cs", |
| 328 | }, | 328 | }, |
| 329 | .probe = elsa_cs_probe, | 329 | .probe = elsa_cs_probe, |
| 330 | .remove = elsa_cs_detach, | 330 | .remove = __devexit_p(elsa_cs_detach), |
| 331 | .id_table = elsa_ids, | 331 | .id_table = elsa_ids, |
| 332 | .suspend = elsa_suspend, | 332 | .suspend = elsa_suspend, |
| 333 | .resume = elsa_resume, | 333 | .resume = elsa_resume, |
