mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:20:52 +07:00
4e69817b10
This patch updates license to use SPDX-License-Identifier instead of verbose license text. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17 lines
363 B
C
17 lines
363 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* EHCI SuperH driver platform data
|
|
*
|
|
* Copyright (C) 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
* Copyright (C) 2012 Renesas Solutions Corp.
|
|
*/
|
|
|
|
#ifndef __USB_EHCI_SH_H
|
|
#define __USB_EHCI_SH_H
|
|
|
|
struct ehci_sh_platdata {
|
|
void (*phy_init)(void); /* Phy init function */
|
|
};
|
|
|
|
#endif /* __USB_EHCI_SH_H */
|