summaryrefslogtreecommitdiff
path: root/include/linux/device-id/ulpi.h
blob: b5105b4cfaccbea43371b0225310e252afbd1e33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_DEVICE_ID_ULPI_H
#define LINUX_DEVICE_ID_ULPI_H

#ifdef __KERNEL__
#include <linux/types.h>
typedef unsigned long kernel_ulong_t;
#endif

struct ulpi_device_id {
	__u16 vendor;
	__u16 product;
	kernel_ulong_t driver_data;
};

#endif /* ifndef LINUX_DEVICE_ID_ULPI_H */