Re: [patch 2.6.20-rc2] gpio_direction_output() needs an initialvalue

From: Andrew Victor
Date: Fri Mar 02 2007 - 01:00:44 EST


hi David,

> It's been pointed out that output GPIOs should have an initial value, to
> avoid signal glitching ... among other things, it can be some time before
> a driver is ready. This patch corrects that oversight, fixing

For the AT91 changes:
Acked-by: Andrew Victor <andrew@xxxxxxxxxxxxx>


> --- g26.orig/drivers/spi/atmel_spi.c 2007-02-28 12:47:43.000000000 -0800
> +++ g26/drivers/spi/atmel_spi.c 2007-03-01 15:29:30.000000000 -0800

> - gpio_direction_output(npcs_pin);
> + gpio_direction_output(npcs_pin, !(spi->mode & SPI_CS_HIGH));
> }

As mentioned previously (by Walter Tuppa), wouldn't it be better to just
change this to:
cs_deactivate(spi);


Regards,
Andrew Victor


-
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/