staging: brcm80211: fix checkpatch macro errors.
[deliverable/linux.git] / drivers / staging / brcm80211 / brcmfmac / dhd_linux.c
index 42e2f2981bb442af9603d33cdf224e084714bec8..3536011533ddbb9b18b01e660f76b04f05f73bd0 100644 (file)
@@ -337,9 +337,12 @@ uint dhd_radio_up = 1;
 char iface_name[IFNAMSIZ];
 module_param_string(iface_name, iface_name, IFNAMSIZ, 0);
 
-#define DAEMONIZE(a) daemonize(a); \
-       allow_signal(SIGKILL); \
-       allow_signal(SIGTERM);
+#define DAEMONIZE(a) \
+       do { \
+               daemonize(a); \
+               allow_signal(SIGKILL); \
+               allow_signal(SIGTERM); \
+       } while (0);
 
 #define BLOCKABLE()    (!in_atomic())
 
This page took 0.025555 seconds and 5 git commands to generate.