From: Haavard Skinnemoen Date: Wed, 30 Apr 2008 11:09:56 +0000 (+0200) Subject: avr32: Use correct condition around macb clock accessors X-Git-Tag: v1.3.4-rc1~114^2~23^2~14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cdd42c0c7a5205fc380912d83229069a71ea3abf;p=u-boot avr32: Use correct condition around macb clock accessors get_macb_pclk_rate() and get_macb_hclk_rate() should be available when the chip has a MACB controller, not when it has a USART. Signed-off-by: Haavard Skinnemoen --- diff --git a/include/asm-avr32/arch-at32ap700x/clk.h b/include/asm-avr32/arch-at32ap700x/clk.h index 385319aac7..309fda50e2 100644 --- a/include/asm-avr32/arch-at32ap700x/clk.h +++ b/include/asm-avr32/arch-at32ap700x/clk.h @@ -58,7 +58,7 @@ static inline unsigned long get_usart_clk_rate(unsigned int dev_id) return get_pba_clk_rate(); } #endif -#ifdef AT32AP700x_CHIP_HAS_USART +#ifdef AT32AP700x_CHIP_HAS_MACB static inline unsigned long get_macb_pclk_rate(unsigned int dev_id) { return get_pbb_clk_rate();