Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ee74cee8 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "include: Add device table definition for MHI drivers"

parents a6253cc1 a772e496
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -677,4 +677,16 @@ struct ulpi_device_id {
	kernel_ulong_t driver_data;
};

#define MHI_NAME_SIZE 32

/**
 * struct mhi_device_id - MHI device identification
 * @chan: MHI channel name
 * @driver_data: driver data
 */
struct mhi_device_id {
	const char chan[MHI_NAME_SIZE];
	kernel_ulong_t driver_data;
};

#endif /* LINUX_MOD_DEVICETABLE_H */