From 34c53a9baae687e4eff6c56d477e406af7fbec71 Mon Sep 17 00:00:00 2001 From: Eugen Hristev Date: Mon, 30 Sep 2019 07:29:01 +0000 Subject: [PATCH] board: atmel: sam9x60ek: add support for PDA detection Automatically detect PDA at boot. Signed-off-by: Eugen Hristev --- board/atmel/sam9x60ek/sam9x60ek.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/board/atmel/sam9x60ek/sam9x60ek.c b/board/atmel/sam9x60ek/sam9x60ek.c index e352afc..182b3ae 100644 --- a/board/atmel/sam9x60ek/sam9x60ek.c +++ b/board/atmel/sam9x60ek/sam9x60ek.c @@ -16,6 +16,8 @@ #include #include +extern void at91_pda_detect(void); + DECLARE_GLOBAL_DATA_PTR; void at91_prepare_cpu_var(void); @@ -80,6 +82,9 @@ static void sam9x60ek_nand_hw_init(void) int board_late_init(void) { at91_prepare_cpu_var(); + + at91_pda_detect(); + return 0; } #endif -- 2.7.4