qcacld-3.0: Fix compilation issue due to missing braces

Compiler with option -Werror=missing-braces enabled wants
extra pair of braces while initializing variables during
declaration. Add extra pair of braces to fix compilation
issue.

Change-Id: I4ffd2711985cb01a9f6800800165280bddf00590
CRs-Fixed: 3180670
This commit is contained in:
nakul kachhwaha
2022-04-22 14:53:47 +05:30
committed by Madan Koyyalamudi
parent d8ffcc4d87
commit df9500aef0

View File

@@ -485,7 +485,7 @@ static int pld_ipci_set_thermal_state(struct device *dev,
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0))
static struct device_info pld_ipci_dev_info[] = {
{ "wcn6750", WCN6750_DEVICE_ID },
{ 0 }
{ { 0 } }
};
#endif