Hey, On Mon, Aug 02, 2010 at 08:59:26PM +0900, Komuro wrote: > >--- a/drivers/net/pcmcia/xirc2ps_cs.c > >+++ b/drivers/net/pcmcia/xirc2ps_cs.c > > > >+ if (err) > > goto config_error; > >- reg.Action = CS_WRITE; > >- reg.Offset = CISREG_IOBASE_1; > >- reg.Value = (link->io.BasePort2 >> 8) & 0xff; > >- if ((err = pcmcia_access_configuration_register(link, ®))) > >+ > >+ err = pcmcia_write_config_byte(link, CISREG_IOBASE_1, > >+ link->io.BasePort2 & 0xff); > > It should be > > err = pcmcia_write_config_byte(link, CISREG_IOBASE_1, > (link->io.BasePort2 >> 8) & 0xff); > Fixed, thanks. Best, Dominik -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html