diff options
Diffstat (limited to 'drivers/net/irda')
| -rw-r--r-- | drivers/net/irda/sh_irda.c | 2 | ||||
| -rw-r--r-- | drivers/net/irda/sh_sir.c | 4 | ||||
| -rw-r--r-- | drivers/net/irda/smsc-ircc2.c | 18 | 
3 files changed, 13 insertions, 11 deletions
diff --git a/drivers/net/irda/sh_irda.c b/drivers/net/irda/sh_irda.c index 4488bd581ec..82660672dcd 100644 --- a/drivers/net/irda/sh_irda.c +++ b/drivers/net/irda/sh_irda.c @@ -22,6 +22,8 @@   *  - DMA transfer support   *  - FIFO mode support   */ +#include <linux/io.h> +#include <linux/interrupt.h>  #include <linux/module.h>  #include <linux/platform_device.h>  #include <linux/clk.h> diff --git a/drivers/net/irda/sh_sir.c b/drivers/net/irda/sh_sir.c index 52a7c86af66..ed7d7d62bf6 100644 --- a/drivers/net/irda/sh_sir.c +++ b/drivers/net/irda/sh_sir.c @@ -12,6 +12,8 @@   * published by the Free Software Foundation.   */ +#include <linux/io.h> +#include <linux/interrupt.h>  #include <linux/module.h>  #include <linux/platform_device.h>  #include <linux/slab.h> @@ -511,7 +513,7 @@ static void sh_sir_tx(struct sh_sir_self *self, int phase)  static int sh_sir_read_data(struct sh_sir_self *self)  { -	u16 val; +	u16 val = 0;  	int timeout = 1024;  	while (timeout--) { diff --git a/drivers/net/irda/smsc-ircc2.c b/drivers/net/irda/smsc-ircc2.c index 954f6e938fb..8b1c3484d27 100644 --- a/drivers/net/irda/smsc-ircc2.c +++ b/drivers/net/irda/smsc-ircc2.c @@ -2405,8 +2405,6 @@ static int __init smsc_superio_lpc(unsigned short cfg_base)   * addresses making a subsystem device table necessary.   */  #ifdef CONFIG_PCI -#define PCIID_VENDOR_INTEL 0x8086 -#define PCIID_VENDOR_ALI 0x10b9  static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __initdata = {  	/*  	 * Subsystems needing entries: @@ -2416,7 +2414,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  	 */  	{  		/* Guessed entry */ -		.vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */ +		.vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */  		.device = 0x24cc,  		.subvendor = 0x103c,  		.subdevice = 0x08bc, @@ -2429,7 +2427,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  		.name = "HP nx5000 family",  	},  	{ -		.vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */ +		.vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */  		.device = 0x24cc,  		.subvendor = 0x103c,  		.subdevice = 0x088c, @@ -2443,7 +2441,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  		.name = "HP nc8000 family",  	},  	{ -		.vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */ +		.vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */  		.device = 0x24cc,  		.subvendor = 0x103c,  		.subdevice = 0x0890, @@ -2456,7 +2454,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  		.name = "HP nc6000 family",  	},  	{ -		.vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */ +		.vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */  		.device = 0x24cc,  		.subvendor = 0x0e11,  		.subdevice = 0x0860, @@ -2471,7 +2469,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  	},  	{  		/* Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge */ -		.vendor = PCIID_VENDOR_INTEL, +		.vendor = PCI_VENDOR_ID_INTEL,  		.device = 0x24c0,  		.subvendor = 0x1179,  		.subdevice = 0xffff, /* 0xffff is "any" */ @@ -2484,7 +2482,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  		.name = "Toshiba laptop with Intel 82801DB/DBL LPC bridge",  	},  	{ -		.vendor = PCIID_VENDOR_INTEL, /* Intel 82801CAM ISA bridge */ +		.vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801CAM ISA bridge */  		.device = 0x248c,  		.subvendor = 0x1179,  		.subdevice = 0xffff, /* 0xffff is "any" */ @@ -2498,7 +2496,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  	},  	{  		/* 82801DBM (ICH4-M) LPC Interface Bridge */ -		.vendor = PCIID_VENDOR_INTEL, +		.vendor = PCI_VENDOR_ID_INTEL,  		.device = 0x24cc,  		.subvendor = 0x1179,  		.subdevice = 0xffff, /* 0xffff is "any" */ @@ -2512,7 +2510,7 @@ static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __ini  	},  	{  		/* ALi M1533/M1535 PCI to ISA Bridge [Aladdin IV/V/V+] */ -		.vendor = PCIID_VENDOR_ALI, +		.vendor = PCI_VENDOR_ID_AL,  		.device = 0x1533,  		.subvendor = 0x1179,  		.subdevice = 0xffff, /* 0xffff is "any" */  |