diff options
| author | Tom Rini <[email protected]> | 2026-02-08 10:14:45 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-02-08 10:14:45 -0600 |
| commit | 42b3ee7fa5248ad89467aaf2585f4a08aedd4731 (patch) | |
| tree | fa61121fee23565d673c9d90fb733cb6ad80adcd /include | |
| parent | c7fbe028ee5bc83df833a73e1491f1a483b65d98 (diff) | |
| parent | 1690228bac43cf5bb0dd4473abe68cca8400f23c (diff) | |
Merge tag 'u-boot-at91-2026.04-a' of https://source.denx.de/u-boot/custodians/u-boot-at91
First set of u-boot-at91 features for the 2026.04 cycle:
This small fixes set includes fixing 64 bit builds and some warnings for
the at91 serial driver, and some cleanup on the nand driver.
Diffstat (limited to 'include')
| -rw-r--r-- | include/dm/platform_data/atmel_serial.h | 14 |
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..96da6f50287 --- /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 { + uintptr_t base_addr; +}; + +#endif |
