From 7536a398e978aa8ddb0e5f2ae12bae73a708b68f Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Fri, 24 Apr 2020 21:59:21 -0700 Subject: 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/40710 Reviewed-by: HAOUAS Elyes Reviewed-by: Aaron Durbin Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/drivers/wifi/generic.c | 2 +- src/drivers/wifi/generic_wifi.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/drivers/wifi') diff --git a/src/drivers/wifi/generic.c b/src/drivers/wifi/generic.c index fe2e39d29d..b864094499 100644 --- a/src/drivers/wifi/generic.c +++ b/src/drivers/wifi/generic.c @@ -171,7 +171,7 @@ static void emit_sar_acpi_structures(void) acpigen_pop_len(); } -void generic_wifi_fill_ssdt(struct device *dev, +void generic_wifi_fill_ssdt(const struct device *dev, const struct generic_wifi_config *config) { const char *path; diff --git a/src/drivers/wifi/generic_wifi.h b/src/drivers/wifi/generic_wifi.h index 1c90bc6d66..b863ef4565 100644 --- a/src/drivers/wifi/generic_wifi.h +++ b/src/drivers/wifi/generic_wifi.h @@ -22,7 +22,7 @@ struct generic_wifi_config { * This function implements common device operation to help fill ACPI SSDT * table for WiFi controller. */ -void generic_wifi_fill_ssdt(struct device *dev, +void generic_wifi_fill_ssdt(const struct device *dev, const struct generic_wifi_config *config); /** -- cgit v1.2.3