Commit 88ff6ab4a87bb736c1d900ac638f0329aca7d0c0

Authored by Fabio Estevam
Committed by Vinod Koul
1 parent dc7badba19

dma: ipu: ipu_idmac: Fix section mismatch

Since commit 84c1e63c12 (dma: Remove erroneous __exit and __exit_p() references)
the following section mismatch happens:

WARNING: drivers/built-in.o(.text+0x20f94): Section mismatch in reference from the function ipu_remove() to the function .exit.text:ipu_idmac_exit()
The function ipu_remove() references a function in an exit section.
Often the function ipu_idmac_exit() has valid usage outside the exit section
and the fix is to remove the __exit annotation of ipu_idmac_exit.

Remove the '__exit' annotation from ipu_idmac_exit in order to fix it.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by:  Maxin B. John <maxin.john@enea.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/dma/ipu/ipu_idmac.c
... ... @@ -1642,7 +1642,7 @@
1642 1642 return dma_async_device_register(&idmac->dma);
1643 1643 }
1644 1644  
1645   -static void __exit ipu_idmac_exit(struct ipu *ipu)
  1645 +static void ipu_idmac_exit(struct ipu *ipu)
1646 1646 {
1647 1647 int i;
1648 1648 struct idmac *idmac = &ipu->idmac;