diff options
author | Wenyou Yang <wenyou.yang@atmel.com> | 2017-04-18 15:15:48 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-05-09 12:14:15 -0600 |
commit | 59b37122b10b1d5d1d8c2b6833cc1075e7275892 (patch) | |
tree | f65ba08b133929814a581e54b2c0089becd031f9 /board/atmel/at91sam9m10g45ek | |
parent | c1868adf6444e8fb600575affb634cad2f2ff8f5 (diff) |
configs: at91sam9m10g45ek: Update to support DM/DT
Update the configuration files to support the device tree and driver
model. The device clock and pins configuration are handled by the
clock and the pinctrl drivers respectively.
Because the limitation of internal SRAM size, the SPL with driver
model can't be supported, disable the SPL option.
Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/atmel/at91sam9m10g45ek')
-rw-r--r-- | board/atmel/at91sam9m10g45ek/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/atmel/at91sam9m10g45ek/Makefile b/board/atmel/at91sam9m10g45ek/Makefile index e5448ecc67..55cd9468a4 100644 --- a/board/atmel/at91sam9m10g45ek/Makefile +++ b/board/atmel/at91sam9m10g45ek/Makefile @@ -10,4 +10,4 @@ # obj-y += at91sam9m10g45ek.o -obj-y += led.o +obj-(CONFIG_AT91_LED) += led.o |