diff options
Diffstat (limited to 'include/linux/mod_devicetable.h')
-rw-r--r-- | include/linux/mod_devicetable.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index a0dcc9b6a723..f9bd2f34b99f 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
@@ -448,6 +448,23 @@ struct pci_epf_device_id { | |||
448 | kernel_ulong_t driver_data; | 448 | kernel_ulong_t driver_data; |
449 | }; | 449 | }; |
450 | 450 | ||
451 | /* i3c */ | ||
452 | |||
453 | #define I3C_MATCH_DCR 0x1 | ||
454 | #define I3C_MATCH_MANUF 0x2 | ||
455 | #define I3C_MATCH_PART 0x4 | ||
456 | #define I3C_MATCH_EXTRA_INFO 0x8 | ||
457 | |||
458 | struct i3c_device_id { | ||
459 | __u8 match_flags; | ||
460 | __u8 dcr; | ||
461 | __u16 manuf_id; | ||
462 | __u16 part_id; | ||
463 | __u16 extra_info; | ||
464 | |||
465 | const void *data; | ||
466 | }; | ||
467 | |||
451 | /* spi */ | 468 | /* spi */ |
452 | 469 | ||
453 | #define SPI_NAME_SIZE 32 | 470 | #define SPI_NAME_SIZE 32 |