Skip to content

Commit

Permalink
avr32: favr-32 build fix
Browse files Browse the repository at this point in the history
The favr-32 board code still refers to the old asm/arch header files
which were moved to mach/ some time ago.

Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
  • Loading branch information
Haavard Skinnemoen committed Dec 18, 2008
1 parent de13d28 commit 8983fdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/avr32/boards/favr-32/flash.c
Expand Up @@ -13,7 +13,7 @@
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>

#include <asm/arch/smc.h>
#include <mach/smc.h>

static struct smc_timing flash_timing __initdata = {
.ncs_read_setup = 0,
Expand Down
8 changes: 4 additions & 4 deletions arch/avr32/boards/favr-32/setup.c
Expand Up @@ -25,10 +25,10 @@

#include <asm/setup.h>

#include <asm/arch/at32ap700x.h>
#include <asm/arch/init.h>
#include <asm/arch/board.h>
#include <asm/arch/portmux.h>
#include <mach/at32ap700x.h>
#include <mach/init.h>
#include <mach/board.h>
#include <mach/portmux.h>

/* Oscillator frequencies. These are board-specific */
unsigned long at32_board_osc_rates[3] = {
Expand Down

0 comments on commit 8983fdb

Please sign in to comment.