mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 09:50:55 +07:00
29f9b6cf7b
Define syscon platform data structure that can be used to define a regmap config name. This is particularly useful in the regmap debugfs when there is more than one syscon device registered, to distinguish the register blocks. Signed-off-by: Pawel Moll <pawel.moll@arm.com> Acked-by: Lee Jones <lee.jones@linaro.org>
9 lines
124 B
C
9 lines
124 B
C
#ifndef PLATFORM_DATA_SYSCON_H
|
|
#define PLATFORM_DATA_SYSCON_H
|
|
|
|
struct syscon_platform_data {
|
|
const char *label;
|
|
};
|
|
|
|
#endif
|