Skip to content

Commit

Permalink
usb: musb: Make dma_controller_create __devinit
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Shubhrajyoti D authored and Felipe Balbi committed Aug 9, 2012
1 parent f69dfa1 commit 07a67bb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/usb/musb/cppi_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@ irqreturn_t cppi_interrupt(int irq, void *dev_id)
}

/* Instantiate a software object representing a DMA controller. */
struct dma_controller *__init
struct dma_controller *__devinit
dma_controller_create(struct musb *musb, void __iomem *mregs)
{
struct cppi *controller;
Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/musb/musb_dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 *);
Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/musb/musbhsdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ void dma_controller_destroy(struct dma_controller *c)
kfree(controller);
}

struct dma_controller *__init
struct dma_controller *__devinit
dma_controller_create(struct musb *musb, void __iomem *base)
{
struct musb_dma_controller *controller;
Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/musb/tusb6010_omap.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ void dma_controller_destroy(struct dma_controller *c)
kfree(tusb_dma);
}

struct dma_controller *__init
struct dma_controller *__devinit
dma_controller_create(struct musb *musb, void __iomem *base)
{
void __iomem *tbase = musb->ctrl_base;
Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/musb/ux500_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ void dma_controller_destroy(struct dma_controller *c)
kfree(controller);
}

struct dma_controller *__init
struct dma_controller *__devinit
dma_controller_create(struct musb *musb, void __iomem *base)
{
struct ux500_dma_controller *controller;
Expand Down

0 comments on commit 07a67bb

Please sign in to comment.