Explorar el Código

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
nakul kachhwaha hace 2 años
padre
commit
df9500aef0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      core/pld/src/pld_ipci.c

+ 1 - 1
core/pld/src/pld_ipci.c

@@ -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