staging: vt6655: Fix warnings if CONFIG_PM is not defined

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@lwfinger.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Larry Finger 2011-05-05 18:52:56 -05:00 committed by Greg Kroah-Hartman
parent 4b455e0dab
commit 9fada0a0c5

View file

@ -396,7 +396,7 @@ typedef struct __device_info {
struct pci_dev* pcid;
#if CONFIG_PM
#ifdef CONFIG_PM
u32 pci_state[16];
#endif