From 84ec1493a30473e1f92876c12184bf3352dd5e02 Mon Sep 17 00:00:00 2001 From: Jeremy Compostella Date: Thu, 4 Sep 2025 11:42:19 -0700 Subject: [PATCH] drivers/wifi/generic: Fix typo in header guard comment The header guard comment in the chip.h file was incorrect, using _GENERIC_WIFI_H_ instead of the correct _WIFI_GENERIC_H_. This commit corrects the typo to ensure consistency. Change-Id: I00a93e811608ddf449065bc92441648f7332fc4b Signed-off-by: Jeremy Compostella Reviewed-on: https://review.coreboot.org/c/coreboot/+/89055 Reviewed-by: Bora Guvendik Tested-by: build bot (Jenkins) Reviewed-by: Jamie Ryu --- src/drivers/wifi/generic/chip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/wifi/generic/chip.h b/src/drivers/wifi/generic/chip.h index e53459a864..0de153aa3c 100644 --- a/src/drivers/wifi/generic/chip.h +++ b/src/drivers/wifi/generic/chip.h @@ -32,4 +32,4 @@ struct drivers_wifi_generic_config { DEVTREE_CONST struct device *bluetooth_companion; }; -#endif /* _GENERIC_WIFI_H_ */ +#endif /* _WIFI_GENERIC_H_ */