1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-04 22:57:30 +03:00

[ar71xx] refresh 3.2 patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29934 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2012-01-28 13:19:43 +00:00
parent b5c844a59d
commit ccc47d58db
12 changed files with 20 additions and 19 deletions

View File

@ -32,18 +32,19 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
- status = gpio_request(cdata->gpio, dev_name(&spi->dev)); - status = gpio_request(cdata->gpio, dev_name(&spi->dev));
- if (status) - if (status)
- return status; - return status;
+ flags = GPIOF_DIR_OUT; -
+ if (spi->mode & SPI_CS_HIGH)
+ flags |= GPIOF_INIT_HIGH;
+ else
+ flags |= GPIOF_INIT_LOW;
- status = gpio_direction_output(cdata->gpio, - status = gpio_direction_output(cdata->gpio,
- spi->mode & SPI_CS_HIGH); - spi->mode & SPI_CS_HIGH);
- if (status) { - if (status) {
- gpio_free(cdata->gpio); - gpio_free(cdata->gpio);
- return status; - return status;
- } - }
+ flags = GPIOF_DIR_OUT;
+ if (spi->mode & SPI_CS_HIGH)
+ flags |= GPIOF_INIT_HIGH;
+ else
+ flags |= GPIOF_INIT_LOW;
+
+ status = gpio_request_one(cdata->gpio, flags, + status = gpio_request_one(cdata->gpio, flags,
+ dev_name(&spi->dev)); + dev_name(&spi->dev));
} }