diff options
author | Shubhrajyoti D <shubhrajyoti@ti.com> | 2012-08-09 20:08:32 +0530 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-08-09 18:05:07 +0300 |
commit | 07a67bbb95ea7977846bd851dab5f4f2be8e488c (patch) | |
tree | 332b3cab3e2c53c070ea108f7f0ec418a3131624 /drivers/usb/musb/musb_dma.h | |
parent | f69dfa1f01e20387ada601f2bf772061d79e6a8f (diff) | |
download | linux-stable-07a67bbb95ea7977846bd851dab5f4f2be8e488c.tar.gz linux-stable-07a67bbb95ea7977846bd851dab5f4f2be8e488c.tar.bz2 linux-stable-07a67bbb95ea7977846bd851dab5f4f2be8e488c.zip |
usb: musb: Make dma_controller_create __devinit
dma_controller_create is called only from musb_init_controller
which is __devint so annotate dma_controller_create also with
__devint.
fixes the warn
WARNING: vmlinux.o(.devinit.text+0x6fa8): Section mismatch in reference from the function musb_init_controller() to the function .init.text:dma_controller_create()
The function __devinit musb_init_controller() references
a function __init dma_controller_create().
If dma_controller_create is only used by musb_init_controller then
annotate dma_controller_create with a matching annotation.
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/musb_dma.h')
-rw-r--r-- | drivers/usb/musb/musb_dma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_dma.h b/drivers/usb/musb/musb_dma.h index 3a97c4e2d4f5..24d39210d4ab 100644 --- a/drivers/usb/musb/musb_dma.h +++ b/drivers/usb/musb/musb_dma.h @@ -178,7 +178,7 @@ struct dma_controller { extern void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit); -extern struct dma_controller *__init +extern struct dma_controller *__devinit dma_controller_create(struct musb *, void __iomem *); extern void dma_controller_destroy(struct dma_controller *); |