aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/wifi
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-10-04 18:05:28 -0700
committerFurquan Shaikh <furquan@google.com>2020-10-13 18:44:46 +0000
commit44f14509ed33c572ed5268f96c58c06d4348e84a (patch)
tree1d39e05cdbe8e26df4b8a4a35b27dc9b5252c28c /src/drivers/wifi
parent8262a2c71872cc439ef522ce2e9252f6ec976ee3 (diff)
drivers/wifi/generic: Limit scope of ACPI-related functions to generic.c
This change limits the scope of `wifi_generic_fill_ssdt()` and `wifi_generic_acpi_name()` to generic.c since they are not used outside of this file anymore. Also, since there is no need to split SSDT generator into two separate functions, `wifi_generic_fill_ssdt_generator()` is dropped and `.acpi_fill_ssdt` directly points to `wifi_generic_fill_ssdt()`. BUG=b:169802515 BRANCH=zork Change-Id: I2cbb97f43d2d9f9ed6d3cf8f0a9b13a7f30e922e Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46038 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Rob Barnes <robbarnes@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/wifi')
-rw-r--r--src/drivers/wifi/generic/chip.h22
-rw-r--r--src/drivers/wifi/generic/generic.c13
2 files changed, 4 insertions, 31 deletions
diff --git a/src/drivers/wifi/generic/chip.h b/src/drivers/wifi/generic/chip.h
index 02ab504daf..e3b0ba5698 100644
--- a/src/drivers/wifi/generic/chip.h
+++ b/src/drivers/wifi/generic/chip.h
@@ -11,26 +11,4 @@ struct drivers_wifi_generic_config {
unsigned int wake;
};
-/**
- * wifi_generic_fill_ssdt() - Fill ACPI SSDT table for WiFi controller
- * @dev: Device structure corresponding to WiFi controller.
- * @config: Generic wifi config required to fill ACPI SSDT table.
- *
- * This function implements common device operation to help fill ACPI SSDT
- * table for WiFi controller.
- */
-void wifi_generic_fill_ssdt(const struct device *dev,
- const struct drivers_wifi_generic_config *config);
-
-/**
- * wifi_generic_acpi_name() - Get ACPI name for WiFi controller
- * @dev: Device structure corresponding to WiFi controller.
- *
- * This function implements common device operation to get the ACPI name for
- * WiFi controller.
- *
- * Return: string representing the ACPI name for WiFi controller.
- */
-const char *wifi_generic_acpi_name(const struct device *dev);
-
#endif /* _GENERIC_WIFI_H_ */
diff --git a/src/drivers/wifi/generic/generic.c b/src/drivers/wifi/generic/generic.c
index ba061d0e8e..1b152111c9 100644
--- a/src/drivers/wifi/generic/generic.c
+++ b/src/drivers/wifi/generic/generic.c
@@ -163,11 +163,11 @@ static void emit_sar_acpi_structures(void)
acpigen_pop_len();
}
-void wifi_generic_fill_ssdt(const struct device *dev,
- const struct drivers_wifi_generic_config *config)
+static void wifi_generic_fill_ssdt(const struct device *dev)
{
const char *path;
u32 address;
+ const struct drivers_wifi_generic_config *config = dev->chip_info;
if (!dev->enabled)
return;
@@ -226,7 +226,7 @@ void wifi_generic_fill_ssdt(const struct device *dev,
dev->chip_ops ? dev->chip_ops->name : "", dev_path(dev));
}
-const char *wifi_generic_acpi_name(const struct device *dev)
+static const char *wifi_generic_acpi_name(const struct device *dev)
{
static char wifi_acpi_name[WIFI_ACPI_NAME_MAX_LEN];
@@ -235,11 +235,6 @@ const char *wifi_generic_acpi_name(const struct device *dev)
(dev_path_encode(dev) & 0xff));
return wifi_acpi_name;
}
-
-static void wifi_generic_fill_ssdt_generator(const struct device *dev)
-{
- wifi_generic_fill_ssdt(dev, dev->chip_info);
-}
#endif
static void wifi_pci_dev_init(struct device *dev)
@@ -292,7 +287,7 @@ struct device_operations wifi_generic_ops = {
.ops_pci = &pci_dev_ops_pci,
#if CONFIG(HAVE_ACPI_TABLES)
.acpi_name = wifi_generic_acpi_name,
- .acpi_fill_ssdt = wifi_generic_fill_ssdt_generator,
+ .acpi_fill_ssdt = wifi_generic_fill_ssdt,
#endif
#if CONFIG(GENERATE_SMBIOS_TABLES)
.get_smbios_data = smbios_write_wifi,