summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-05-08 14:45:00 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-05-08 14:46:42 +0200
commitf4abcd9f1f7ddb5a032d8c07a6adcb95b31cb7c0 (patch)
treeb58a7d2eab77417ff771c8766a5a3d646bf7efdb /drivers
parentf398880accf9b1f5cbfa86a8146b9555b4be922f (diff)
downloadbarebox-f4abcd9f1f7ddb5a032d8c07a6adcb95b31cb7c0.tar.gz
barebox-f4abcd9f1f7ddb5a032d8c07a6adcb95b31cb7c0.tar.xz
ARM: at91: Move mci platform data to include/
To be able to add the Atmel mci driver to COMPILE_TEST move the definition of struct atmel_mci_platform_data to include/ where it can be reached from foreign SoCs as well. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mci/atmel_mci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mci/atmel_mci.c b/drivers/mci/atmel_mci.c
index 0d3b245ced..b4c4e7769e 100644
--- a/drivers/mci/atmel_mci.c
+++ b/drivers/mci/atmel_mci.c
@@ -21,9 +21,9 @@
#include <clock.h>
#include <gpio.h>
#include <io.h>
-#include <mach/board.h>
#include <linux/clk.h>
#include <linux/err.h>
+#include <platform_data/atmel-mci.h>
#include <of_gpio.h>
#include "atmel-mci-regs.h"