Skip to content

Commit

Permalink
S3C24XX: Move and update IIS headers
Browse files Browse the repository at this point in the history
Move the IIS headers to their correct place.

Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Ben Dooks authored and Mark Brown committed Mar 5, 2009
1 parent c597650 commit 8150bc8
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-s3c2410/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <mach/regs-mem.h>
#include <mach/regs-lcd.h>
#include <mach/regs-sdi.h>
#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-iis.h>
#include <plat/regs-spi.h>

static struct s3c24xx_dma_map __initdata s3c2410_dma_mappings[] = {
Expand Down
3 changes: 0 additions & 3 deletions arch/arm/mach-s3c2410/include/mach/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,4 @@ extern int s3c2412_gpio_set_sleepcfg(unsigned int pin, unsigned int state);

/* machine specific hardware definitions should go after this */

/* currently here until moved into config (todo) */
#define CONFIG_NO_MULTIWORD_IO

#endif /* __ASM_ARCH_HARDWARE_H */
2 changes: 1 addition & 1 deletion arch/arm/mach-s3c2410/include/mach/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef __ASM_ARM_ARCH_IO_H
#define __ASM_ARM_ARCH_IO_H

#include <mach/hardware.h>
#include <mach/map.h>

#define IO_SPACE_LIMIT 0xffffffff

Expand Down
4 changes: 2 additions & 2 deletions arch/arm/mach-s3c2412/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
#include <mach/regs-mem.h>
#include <mach/regs-lcd.h>
#include <mach/regs-sdi.h>
#include <asm/plat-s3c24xx/regs-s3c2412-iis.h>
#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-s3c2412-iis.h>
#include <plat/regs-iis.h>
#include <plat/regs-spi.h>

#define MAP(x) { (x)| DMA_CH_VALID, (x)| DMA_CH_VALID, (x)| DMA_CH_VALID, (x)| DMA_CH_VALID }
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-s3c2440/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <mach/regs-mem.h>
#include <mach/regs-lcd.h>
#include <mach/regs-sdi.h>
#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-iis.h>
#include <plat/regs-spi.h>

static struct s3c24xx_dma_map __initdata s3c2440_dma_mappings[] = {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-s3c2443/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <mach/regs-mem.h>
#include <mach/regs-lcd.h>
#include <mach/regs-sdi.h>
#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-iis.h>
#include <plat/regs-spi.h>

#define MAP(x) { \
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-shark/include/mach/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define PCIO_BASE 0xe0000000
#define IO_SPACE_LIMIT 0xffffffff

#define __io(a) ((void __iomem *)(PCIO_BASE + (a)))
#define __io(a) __typesafe_io(PCIO_BASE + (a))
#define __mem_pci(addr) (addr)

#endif
1 change: 1 addition & 0 deletions arch/arm/plat-s3c24xx/clock-dclk.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <mach/regs-clock.h>
#include <mach/regs-gpio.h>
#include <mach/hardware.h>

#include <plat/clock.h>
#include <plat/cpu.h>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion sound/soc/s3c24xx/neo1973_wm8753.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <linux/io.h>
#include <mach/spi-gpio.h>

#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-iis.h>

#include "../codecs/wm8753.h"
#include "lm4857.h"
Expand Down
6 changes: 2 additions & 4 deletions sound/soc/s3c24xx/s3c2412-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <linux/delay.h>
#include <linux/clk.h>
#include <linux/kernel.h>
#include <linux/io.h>

#include <sound/core.h>
#include <sound/pcm.h>
Expand All @@ -30,10 +31,7 @@
#include <sound/soc.h>
#include <mach/hardware.h>

#include <linux/io.h>
#include <asm/dma.h>

#include <asm/plat-s3c24xx/regs-s3c2412-iis.h>
#include <plat/regs-s3c2412-iis.h>

#include <mach/regs-gpio.h>
#include <mach/audio.h>
Expand Down
2 changes: 1 addition & 1 deletion sound/soc/s3c24xx/s3c24xx-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <asm/dma.h>
#include <mach/dma.h>

#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-iis.h>

#include "s3c24xx-pcm.h"
#include "s3c24xx-i2s.h"
Expand Down
2 changes: 1 addition & 1 deletion sound/soc/s3c24xx/s3c24xx_uda134x.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <sound/s3c24xx_uda134x.h>
#include <sound/uda134x.h>

#include <asm/plat-s3c24xx/regs-iis.h>
#include <plat/regs-iis.h>

#include "s3c24xx-pcm.h"
#include "s3c24xx-i2s.h"
Expand Down

0 comments on commit 8150bc8

Please sign in to comment.