summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobert Marko <[email protected]>2026-01-12 14:12:39 +0100
committerEugen Hristev <[email protected]>2026-02-04 14:12:56 +0200
commit1bc75c26524009005eae17293131e0de69039010 (patch)
tree6ff23352c5192af2630ca2ae1d5659077c9adf4a /include
parenta8d982e1f1726254ef27bbdf362f98954ee3feb7 (diff)
arm: at91: move atmel_serial.h to include/dm/platform_data
Move the arch specific atmel_serial.h header from AT91 to the generic include/dm/platform_data. This will be used for support on Microchip LAN969x. Signed-off-by: Robert Marko <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/dm/platform_data/atmel_serial.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/dm/platform_data/atmel_serial.h b/include/dm/platform_data/atmel_serial.h
new file mode 100644
index 00000000000..5d142693640
--- /dev/null
+++ b/include/dm/platform_data/atmel_serial.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (c) 2014 Google, Inc
+ */
+
+#ifndef _ATMEL_SERIAL_H
+#define _ATMEL_SERIAL_H
+
+/* Information about a serial port */
+struct atmel_serial_plat {
+ uint32_t base_addr;
+};
+
+#endif