mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-17 23:16:09 +07:00
415c947435
The irq fixup from at91_sysirq_mask_rtc and at91_sysirq_mask_rtt is now handled by aic_common_rtc_irq_fixup and aic_common_rtt_irq_fixup. Remove those useless functions. Also remove the now unused mach/at91_rtt.h header. Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
27 lines
616 B
C
27 lines
616 B
C
/*
|
|
* Chip-specific setup code for the AT91SAM9x5 family
|
|
*
|
|
* Copyright (C) 2010-2012 Atmel Corporation.
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#include <asm/system_misc.h>
|
|
#include <mach/hardware.h>
|
|
|
|
#include "soc.h"
|
|
#include "generic.h"
|
|
|
|
/* --------------------------------------------------------------------
|
|
* AT91SAM9x5 processor initialization
|
|
* -------------------------------------------------------------------- */
|
|
|
|
static void __init at91sam9x5_map_io(void)
|
|
{
|
|
at91_init_sram(0, AT91SAM9X5_SRAM_BASE, AT91SAM9X5_SRAM_SIZE);
|
|
}
|
|
|
|
AT91_SOC_START(at91sam9x5)
|
|
.map_io = at91sam9x5_map_io,
|
|
AT91_SOC_END
|