Commit 270384cc authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Takashi Iwai

ALSA: atmel: fix building the ac97 driver for at91-multiplatform

at91 will no longer export the mach/cpu.h and mach/hardware.h header files
in the future, which would break building the atmel ac97c driver.

Since the cpu_is_* check is only used to find out whether we are running
on avr32 or arm/at91, we can hardcode that check in the ARM case.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Link: http://www.spinics.net/lists/arm-kernel/msg382068.htmlSigned-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent eb58d484
...@@ -34,10 +34,10 @@ ...@@ -34,10 +34,10 @@
#include <linux/platform_data/dma-dw.h> #include <linux/platform_data/dma-dw.h>
#include <linux/dma/dw.h> #include <linux/dma/dw.h>
#ifdef CONFIG_AVR32
#include <mach/cpu.h> #include <mach/cpu.h>
#else
#ifdef CONFIG_ARCH_AT91 #define cpu_is_at32ap7000() 0
#include <mach/hardware.h>
#endif #endif
#include "ac97c.h" #include "ac97c.h"
......
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