[PATCH] m8xx_pcmcia: support MAP_AUTOSZ required for CF cards
This fixes misconfiguration that could result in odd work of some old CF cards. Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com> Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
parent
3b27e9421a
commit
a94515fa1f
|
@ -1012,8 +1012,7 @@ static int m8xx_set_io_map(struct pcmcia_socket *sock, struct pccard_io_map *io)
|
|||
if(io->flags & MAP_WRPROT)
|
||||
reg |= M8XX_PCMCIA_POR_WRPROT;
|
||||
|
||||
/*if(io->flags & (MAP_16BIT | MAP_AUTOSZ))*/
|
||||
if(io->flags & MAP_16BIT)
|
||||
if(io->flags & (MAP_16BIT | MAP_AUTOSZ))
|
||||
reg |= M8XX_PCMCIA_POR_16BIT;
|
||||
|
||||
if(io->flags & MAP_ACTIVE)
|
||||
|
|
Loading…
Reference in New Issue