diff options
Diffstat (limited to 'include/linux/bcma')
| -rw-r--r-- | include/linux/bcma/bcma.h | 1 | ||||
| -rw-r--r-- | include/linux/bcma/bcma_driver_gmac_cmn.h | 2 | ||||
| -rw-r--r-- | include/linux/bcma/bcma_driver_pci.h | 2 | 
3 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index 93b1e091b1e..e0ce311011c 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h @@ -350,6 +350,7 @@ extern void bcma_core_set_clockmode(struct bcma_device *core,  				    enum bcma_clkmode clkmode);  extern void bcma_core_pll_ctl(struct bcma_device *core, u32 req, u32 status,  			      bool on); +extern u32 bcma_chipco_pll_read(struct bcma_drv_cc *cc, u32 offset);  #define BCMA_DMA_TRANSLATION_MASK	0xC0000000  #define  BCMA_DMA_TRANSLATION_NONE	0x00000000  #define  BCMA_DMA_TRANSLATION_DMA32_CMT	0x40000000 /* Client Mode Translation for 32-bit DMA */ diff --git a/include/linux/bcma/bcma_driver_gmac_cmn.h b/include/linux/bcma/bcma_driver_gmac_cmn.h index def894b83b0..4dd1f33e36a 100644 --- a/include/linux/bcma/bcma_driver_gmac_cmn.h +++ b/include/linux/bcma/bcma_driver_gmac_cmn.h @@ -92,7 +92,7 @@ struct bcma_drv_gmac_cmn {  #define gmac_cmn_write32(gc, offset, val)	bcma_write32((gc)->core, offset, val)  #ifdef CONFIG_BCMA_DRIVER_GMAC_CMN -extern void __devinit bcma_core_gmac_cmn_init(struct bcma_drv_gmac_cmn *gc); +extern void bcma_core_gmac_cmn_init(struct bcma_drv_gmac_cmn *gc);  #else  static inline void bcma_core_gmac_cmn_init(struct bcma_drv_gmac_cmn *gc) { }  #endif diff --git a/include/linux/bcma/bcma_driver_pci.h b/include/linux/bcma/bcma_driver_pci.h index 41da581e161..c48d98d27b7 100644 --- a/include/linux/bcma/bcma_driver_pci.h +++ b/include/linux/bcma/bcma_driver_pci.h @@ -214,7 +214,7 @@ struct bcma_drv_pci {  #define pcicore_write16(pc, offset, val)	bcma_write16((pc)->core, offset, val)  #define pcicore_write32(pc, offset, val)	bcma_write32((pc)->core, offset, val) -extern void __devinit bcma_core_pci_init(struct bcma_drv_pci *pc); +extern void bcma_core_pci_init(struct bcma_drv_pci *pc);  extern int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc,  				 struct bcma_device *core, bool enable);  extern void bcma_core_pci_extend_L1timer(struct bcma_drv_pci *pc, bool extend);  |