diff options
author | Furquan Shaikh <furquan@google.com> | 2020-04-24 21:59:21 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-04-28 19:50:26 +0000 |
commit | 7536a398e978aa8ddb0e5f2ae12bae73a708b68f (patch) | |
tree | ea6a86f305a7be6524b3470946f0f0726b055ade /src/superio/nuvoton/npcd378/superio.c | |
parent | ec3dafd97ccdc4cd4b08476724f3f53a47fbdb7a (diff) | |
download | coreboot-7536a398e978aa8ddb0e5f2ae12bae73a708b68f.tar.xz |
device: Constify struct device * parameter to acpi_fill_ssdt()
.acpi_fill_ssdt() does not need to modify the device structure. This
change makes the struct device * parameter to acpi_fill_ssdt() as
const.
Change-Id: I110f4c67c3b6671c9ac0a82e02609902a8ee5d5c
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40710
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio/nuvoton/npcd378/superio.c')
-rw-r--r-- | src/superio/nuvoton/npcd378/superio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/superio/nuvoton/npcd378/superio.c b/src/superio/nuvoton/npcd378/superio.c index 94b42a02cf..8f5975ba26 100644 --- a/src/superio/nuvoton/npcd378/superio.c +++ b/src/superio/nuvoton/npcd378/superio.c @@ -115,7 +115,7 @@ static const char *npcd378_acpi_hid(const struct device *dev) } } -static void npcd378_ssdt_aux(struct device *dev) +static void npcd378_ssdt_aux(const struct device *dev) { /* Scope */ acpigen_write_scope(acpi_device_path(dev)); @@ -131,7 +131,7 @@ static void npcd378_ssdt_aux(struct device *dev) acpigen_pop_len(); /* Pop Scope */ } -static void npcd378_ssdt_kbc(struct device *dev) +static void npcd378_ssdt_kbc(const struct device *dev) { /* Scope */ acpigen_write_scope(acpi_device_path(dev)); @@ -147,7 +147,7 @@ static void npcd378_ssdt_kbc(struct device *dev) acpigen_pop_len(); /* Pop Scope */ } -static void npcd378_ssdt_pwr(struct device *dev) +static void npcd378_ssdt_pwr(const struct device *dev) { const char *name = acpi_device_path(dev); const char *scope = acpi_device_scope(dev); @@ -403,7 +403,7 @@ static void npcd378_ssdt_pwr(struct device *dev) acpigen_pop_len(); /* Scope */ } -static void npcd378_fill_ssdt_generator(struct device *dev) +static void npcd378_fill_ssdt_generator(const struct device *dev) { superio_common_fill_ssdt_generator(dev); |