diff options
| author | NĂcolas F. R. A. Prado <[email protected]> | 2024-02-12 09:50:06 -0500 |
|---|---|---|
| committer | Tzung-Bi Shih <[email protected]> | 2024-02-17 08:53:05 +0800 |
| commit | f1cebae1dbf85f9de65c13a2d9f5cc3be7e51dc4 (patch) | |
| tree | bc4caee936259bd00189128ed61ab52eefd6ad68 /include | |
| parent | c2b28f6806d2a26a8d46c0f02d4852bf9904929d (diff) | |
firmware: coreboot: Generate aliases for coreboot modules
Generate aliases for coreboot modules to allow automatic module probing.
Reviewed-by: AngeloGioacchino Del Regno <[email protected]>
Reviewed-by: Brian Norris <[email protected]>
Signed-off-by: NĂcolas F. R. A. Prado <[email protected]>
Acked-by: Masahiro Yamada <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Tzung-Bi Shih <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/mod_devicetable.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index f458469c5ce5..7a9a07ea451b 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -960,4 +960,14 @@ struct vchiq_device_id { char name[32]; }; +/** + * struct coreboot_device_id - Identifies a coreboot table entry + * @tag: tag ID + * @driver_data: driver specific data + */ +struct coreboot_device_id { + __u32 tag; + kernel_ulong_t driver_data; +}; + #endif /* LINUX_MOD_DEVICETABLE_H */ |