1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ar71xx: fix whitespaces nits

(build error has been fixed - juhosg)

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23975 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2010-11-12 18:50:29 +00:00
parent fd4246150d
commit b6dbd83901
58 changed files with 340 additions and 340 deletions

View File

@@ -37,8 +37,8 @@
#define AP83_SPI_GPIO_MISO 3
struct ap83_spi {
struct spi_bitbang bitbang;
void __iomem *base;
struct spi_bitbang bitbang;
void __iomem *base;
u32 addr;
struct platform_device *pdev;
@@ -230,15 +230,15 @@ static int ap83_spi_probe(struct platform_device *pdev)
return 0;
err_unmap:
err_unmap:
iounmap(sp->base);
err_spi_put:
err_spi_put:
platform_set_drvdata(pdev, NULL);
spi_master_put(sp->bitbang.master);
err_free_cs:
err_free_cs:
gpio_free(AP83_SPI_GPIO_CS);
err_free_miso:
err_free_miso:
gpio_free(AP83_SPI_GPIO_MISO);
return ret;
}