bcm47xx: fix brcm-wl module loading
_dma_cache_wback_inv needs to be exported to load wl module successfully. root@OpenWrt:/# insmod wl [ 363.867779] wl: Unknown symbol _dma_cache_wback_inv (err -2) failed to insert /lib/modules/5.4.40/wl.ko Signed-off-by: Sungbo Eo <mans0n@gorani.run> Cc: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
		| @@ -12,10 +12,11 @@ | |||||||
|  static int cfe_env; |  static int cfe_env; | ||||||
| --- a/arch/mips/mm/cache.c | --- a/arch/mips/mm/cache.c | ||||||
| +++ b/arch/mips/mm/cache.c | +++ b/arch/mips/mm/cache.c | ||||||
| @@ -62,6 +62,8 @@ void (*_dma_cache_wback_inv)(unsigned lo | @@ -62,6 +62,9 @@ void (*_dma_cache_wback_inv)(unsigned lo | ||||||
|  void (*_dma_cache_wback)(unsigned long start, unsigned long size); |  void (*_dma_cache_wback)(unsigned long start, unsigned long size); | ||||||
|  void (*_dma_cache_inv)(unsigned long start, unsigned long size); |  void (*_dma_cache_inv)(unsigned long start, unsigned long size); | ||||||
|   |   | ||||||
|  | +EXPORT_SYMBOL(_dma_cache_wback_inv); | ||||||
| +EXPORT_SYMBOL(_dma_cache_inv); | +EXPORT_SYMBOL(_dma_cache_inv); | ||||||
| + | + | ||||||
|  #endif /* CONFIG_DMA_NONCOHERENT */ |  #endif /* CONFIG_DMA_NONCOHERENT */ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sungbo Eo
					Sungbo Eo