Skip to content

Commit

Permalink
[PATCH] spi_s3c24xx_gpio: use right header
Browse files Browse the repository at this point in the history
Russel King recently reminded us that one shouldn't use asm/arch/hardware.h
but one should use asm/hardware.h.  Unfortunately, the spi_s3c24xx_gpio
driver is using the wrong header.  This patch is fixing that.

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
thertp authored and Linus Torvalds committed Dec 30, 2006
1 parent 829ad75 commit e2a5d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/spi/spi_s3c24xx_gpio.c
Expand Up @@ -23,7 +23,7 @@

#include <asm/arch/regs-gpio.h>
#include <asm/arch/spi-gpio.h>
#include <asm/arch/hardware.h>
#include <asm/hardware.h>

struct s3c2410_spigpio {
struct spi_bitbang bitbang;
Expand Down

0 comments on commit e2a5d2f

Please sign in to comment.