mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-01 10:43:43 +00:00
mfd: cros_ec: Register EC-based watchdog subdevice
Add ChromeOS EC-based watchdog as EC subdevice. Signed-off-by: Lukasz Majczak <lma@chromium.org> Link: https://lore.kernel.org/r/20240119084328.3135503-4-lma@chromium.org Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
5dce78032b
commit
6cea614ba7
@ -91,6 +91,10 @@ static const struct mfd_cell cros_usbpd_notify_cells[] = {
|
||||
{ .name = "cros-usbpd-notify", },
|
||||
};
|
||||
|
||||
static const struct mfd_cell cros_ec_wdt_cells[] = {
|
||||
{ .name = "cros-ec-wdt", }
|
||||
};
|
||||
|
||||
static const struct cros_feature_to_cells cros_subdevices[] = {
|
||||
{
|
||||
.id = EC_FEATURE_CEC,
|
||||
@ -107,6 +111,11 @@ static const struct cros_feature_to_cells cros_subdevices[] = {
|
||||
.mfd_cells = cros_usbpd_charger_cells,
|
||||
.num_cells = ARRAY_SIZE(cros_usbpd_charger_cells),
|
||||
},
|
||||
{
|
||||
.id = EC_FEATURE_HANG_DETECT,
|
||||
.mfd_cells = cros_ec_wdt_cells,
|
||||
.num_cells = ARRAY_SIZE(cros_ec_wdt_cells),
|
||||
},
|
||||
};
|
||||
|
||||
static const struct mfd_cell cros_ec_platform_cells[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user