[PATCH] staging: vt6655: Fix warnings if CONFIG_PM is not defined

From: Larry Finger
Date: Thu May 05 2011 - 19:53:04 EST


If staging:vt6655 is built without CONFIG_DM being defined, there are large
numbers of warnings of the following form due to use of #if instead of #ifdef:

In file included from drivers/staging/vt6655/upc.h:32,
from drivers/staging/vt6655/mac.h:39,
from drivers/staging/vt6655/wroute.c:34:
drivers/staging/vt6655/device.h:399:5: warning: "CONFIG_PM" is not defined

Signed-off-by: Larry Finger <Larry.Finger@xxxxxxxxxxxx>
---


Index: wireless-testing/drivers/staging/vt6655/device.h
===================================================================
--- wireless-testing.orig/drivers/staging/vt6655/device.h
+++ wireless-testing/drivers/staging/vt6655/device.h
@@ -396,7 +396,7 @@ typedef struct __device_info {

struct pci_dev* pcid;

-#if CONFIG_PM
+#ifdef CONFIG_PM
u32 pci_state[16];
#endif

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/