diff options
| author | Haavard Skinnemoen <[email protected]> | 2008-04-30 13:09:56 +0200 |
|---|---|---|
| committer | Haavard Skinnemoen <[email protected]> | 2008-05-27 15:27:29 +0200 |
| commit | cdd42c0c7a5205fc380912d83229069a71ea3abf (patch) | |
| tree | 73854133af509422fb7f6005aca3f01d6cdaec69 /include | |
| parent | f793a3581901ff39c2abb94012d9bbc8573ccf02 (diff) | |
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 <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-avr32/arch-at32ap700x/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-avr32/arch-at32ap700x/clk.h b/include/asm-avr32/arch-at32ap700x/clk.h index 385319aac75..309fda50e21 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(); |
