diff options
author | Tom Rini <trini@konsulko.com> | 2019-01-25 10:41:24 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-25 10:41:24 -0500 |
commit | 87f78478a4a1bf574db0b0e575ca37cf91fb187c (patch) | |
tree | ffd24bbe72072067cda47dbc7ea1abe80b1e01ac /drivers/serial/serial_arc.c | |
parent | d01806a8fcbdaedcc67cead56ece572021d97ab7 (diff) | |
parent | fae3798ac9f6de5a4cb1aa1e849d419a2bb8dbbe (diff) |
Merge tag 'arc-fixes-for-2019.04-rc1' of git://git.denx.de/u-boot-arc
A couple of trivial fixes and improvements for ARC
Most notable are:
* Move of ENV_SIZE/ENV_OFFSET to Kconfig
* Fix with private structure allocation for arc_uart
* Definition of CONFIG_SYS_CACHELINE_SIZE useful for building drivers
Diffstat (limited to 'drivers/serial/serial_arc.c')
-rw-r--r-- | drivers/serial/serial_arc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/serial_arc.c b/drivers/serial/serial_arc.c index 980b38d2a1c..70dbc6d6b53 100644 --- a/drivers/serial/serial_arc.c +++ b/drivers/serial/serial_arc.c @@ -126,6 +126,7 @@ U_BOOT_DRIVER(serial_arc) = { .id = UCLASS_SERIAL, .of_match = arc_serial_ids, .ofdata_to_platdata = arc_serial_ofdata_to_platdata, + .platdata_auto_alloc_size = sizeof(struct arc_serial_platdata), .probe = arc_serial_probe, .ops = &arc_serial_ops, }; |