2 * Copyright (C) 2014 Panasonic Corporation
3 * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
5 * SPDX-License-Identifier: GPL-2.0+
8 #ifndef ARCH_PLATDEVICE_H
9 #define ARCH_PLATDEVICE_H
11 #include <dm/platdata.h>
12 #include <dm/platform_data/serial-uniphier.h>
14 #define SERIAL_DEVICE(n, ba, clk) \
15 static struct uniphier_serial_platform_data serial_device##n = { \
19 U_BOOT_DEVICE(serial##n) = { \
20 .name = DRIVER_NAME, \
21 .platdata = &serial_device##n \
24 #endif /* ARCH_PLATDEVICE_H */