]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-uniphier/include/mach/platdevice.h
ARM: UniPhier: include <mach/*.h> instead of <asm/arch/*.h>
[people/ms/u-boot.git] / arch / arm / mach-uniphier / include / mach / platdevice.h
CommitLineData
d064cbff
MY
1/*
2 * Copyright (C) 2014 Panasonic Corporation
3 * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef ARCH_PLATDEVICE_H
9#define ARCH_PLATDEVICE_H
10
11#include <dm/platdata.h>
12#include <dm/platform_data/serial-uniphier.h>
13
14#define SERIAL_DEVICE(n, ba, clk) \
15static struct uniphier_serial_platform_data serial_device##n = { \
16 .base = ba, \
17 .uartclk = clk \
18}; \
19U_BOOT_DEVICE(serial##n) = { \
20 .name = DRIVER_NAME, \
21 .platdata = &serial_device##n \
22};
23
a86ac954 24#include <mach/ehci-uniphier.h>
048899ba 25
d064cbff 26#endif /* ARCH_PLATDEVICE_H */