Commit 4bd5a574 authored by Florian Fainelli's avatar Florian Fainelli Committed by Ralf Baechle

MIPS: Alchemy: use IS_ENABLED() macro

Signed-off-by: default avatarFlorian Fainelli <florian@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/3331/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 889a4c7b
...@@ -81,10 +81,10 @@ static void mtx1_power_off(void) ...@@ -81,10 +81,10 @@ static void mtx1_power_off(void)
void __init board_setup(void) void __init board_setup(void)
{ {
#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) #if IS_ENABLED(CONFIG_USB_OHCI_HCD)
/* Enable USB power switch */ /* Enable USB power switch */
alchemy_gpio_direction_output(204, 0); alchemy_gpio_direction_output(204, 0);
#endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */ #endif /* IS_ENABLED(CONFIG_USB_OHCI_HCD) */
/* Initialize sys_pinfunc */ /* Initialize sys_pinfunc */
au_writel(SYS_PF_NI2, SYS_PINFUNC); au_writel(SYS_PF_NI2, SYS_PINFUNC);
......
...@@ -46,7 +46,7 @@ void __init board_setup(void) ...@@ -46,7 +46,7 @@ void __init board_setup(void)
alchemy_gpio1_input_enable(); alchemy_gpio1_input_enable();
udelay(100); udelay(100);
#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) #if IS_ENABLED(CONFIG_USB_OHCI_HCD)
{ {
u32 pin_func, sys_freqctrl, sys_clksrc; u32 pin_func, sys_freqctrl, sys_clksrc;
...@@ -93,7 +93,7 @@ void __init board_setup(void) ...@@ -93,7 +93,7 @@ void __init board_setup(void)
pin_func |= SYS_PF_USB; pin_func |= SYS_PF_USB;
au_writel(pin_func, SYS_PINFUNC); au_writel(pin_func, SYS_PINFUNC);
} }
#endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */ #endif /* IS_ENABLED(CONFIG_USB_OHCI_HCD) */
/* Enable sys bus clock divider when IDLE state or no bus activity. */ /* Enable sys bus clock divider when IDLE state or no bus activity. */
au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL); au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL);
......
...@@ -53,7 +53,7 @@ void __init board_setup(void) ...@@ -53,7 +53,7 @@ void __init board_setup(void)
alchemy_gpio_direction_input(201); alchemy_gpio_direction_input(201);
alchemy_gpio_direction_input(203); alchemy_gpio_direction_input(203);
#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) #if IS_ENABLED(CONFIG_USB_OHCI_HCD)
/* Zero and disable FREQ2 */ /* Zero and disable FREQ2 */
sys_freqctrl = au_readl(SYS_FREQCTRL0); sys_freqctrl = au_readl(SYS_FREQCTRL0);
...@@ -87,7 +87,7 @@ void __init board_setup(void) ...@@ -87,7 +87,7 @@ void __init board_setup(void)
/* 2nd USB port is USB host */ /* 2nd USB port is USB host */
pin_func |= SYS_PF_USB; pin_func |= SYS_PF_USB;
au_writel(pin_func, SYS_PINFUNC); au_writel(pin_func, SYS_PINFUNC);
#endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */ #endif /* IS_ENABLED(CONFIG_USB_OHCI_HCD) */
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment