remarkable-linux/drivers/mfd
Tony Lindgren ce491cf854 omap: headers: Move remaining headers from include/mach to include/plat
Move the remaining headers under plat-omap/include/mach
to plat-omap/include/plat. Also search and replace the
files using these headers to include using the right path.

This was done with:

#!/bin/bash
mach_dir_old="arch/arm/plat-omap/include/mach"
plat_dir_new="arch/arm/plat-omap/include/plat"
headers=$(cd $mach_dir_old && ls *.h)
omap_dirs="arch/arm/*omap*/ \
drivers/video/omap \
sound/soc/omap"
other_files="drivers/leds/leds-ams-delta.c \
drivers/mfd/menelaus.c \
drivers/mfd/twl4030-core.c \
drivers/mtd/nand/ams-delta.c"

for header in $headers; do
	old="#include <mach\/$header"
	new="#include <plat\/$header"
	for dir in $omap_dirs; do
		find $dir -type f -name \*.[chS] | \
			xargs sed -i "s/$old/$new/"
	done
	find drivers/ -type f -name \*omap*.[chS] | \
		xargs sed -i "s/$old/$new/"
	for file in $other_files; do
		sed -i "s/$old/$new/" $file
	done
done

for header in $(ls $mach_dir_old/*.h); do
	git mv $header $plat_dir_new/
done

Signed-off-by: Tony Lindgren <tony@atomide.com>
2009-10-20 09:40:47 -07:00
..
ab3100-core.c mfd: AB3100 drop unused module parameters 2009-10-04 22:53:44 +02:00
ab3100-otp.c mfd: AB3100 OTP readout 2009-09-17 09:47:21 +02:00
asic3.c mfd: asic3: enable SD/SDIO cell 2009-06-17 19:41:50 +02:00
da903x.c mfd: early init for MFD running regulators 2009-06-17 19:41:54 +02:00
dm355evm_msp.c mfd: Correct ro and cd implemantion on DM355 2009-09-17 09:46:54 +02:00
ezx-pcap.c spi: prefix modalias with "spi:" 2009-09-23 07:39:43 -07:00
htc-egpio.c
htc-pasic3.c
Kconfig mfd: Add support for TWL4030/5030 dynamic power switching 2009-09-17 09:47:22 +02:00
Makefile mfd: Add support for TWL4030/5030 dynamic power switching 2009-09-17 09:47:22 +02:00
mc13783-core.c mfd: Add Freescale MC13783 driver 2009-09-17 09:47:19 +02:00
mcp-core.c
mcp-sa11x0.c
mcp.h
menelaus.c omap: headers: Move remaining headers from include/mach to include/plat 2009-10-20 09:40:47 -07:00
mfd-core.c mfd: Allow multiple MFD cells with the same name 2009-09-17 09:46:56 +02:00
pcf50633-adc.c mfd: revise locking for pcf50633 ADC 2009-09-17 09:46:53 +02:00
pcf50633-core.c mfd: use a dedicated workqueue for pcf50633 irq processing 2009-09-17 09:46:53 +02:00
pcf50633-gpio.c mfd/pcf50633-gpio.c: add MODULE_LICENSE 2009-06-17 19:41:30 +02:00
sm501.c mfd: sm501, fix lock imbalance 2009-07-03 11:54:50 +02:00
t7l66xb.c mfd: fix tmio related warnings 2009-06-17 19:41:52 +02:00
tc6387xb.c mfd: fix tmio related warnings 2009-06-17 19:41:52 +02:00
tc6393xb.c mfd: fix tmio related warnings 2009-06-17 19:41:52 +02:00
tps65010.c
twl4030-core.c omap: headers: Move remaining headers from include/mach to include/plat 2009-10-20 09:40:47 -07:00
twl4030-irq.c mfd: remove unnecessary semicolons from twl4030 2009-09-17 09:46:48 +02:00
twl4030-power.c mfd: Fix twl4030-power warnings 2009-09-17 09:47:27 +02:00
ucb1x00-assabet.c
ucb1x00-core.c headers: remove sched.h from interrupt.h 2009-10-11 11:20:58 -07:00
ucb1x00-ts.c
ucb1x00.h
ucb1400_core.c headers: remove sched.h from poll.h 2009-10-04 15:05:10 -07:00
wm831x-core.c mfd: Export ISEL values from WM831x core 2009-09-17 09:47:00 +02:00
wm831x-irq.c mfd: Add WM831x interrupt support 2009-09-17 09:46:57 +02:00
wm831x-otp.c mfd: Add basic WM831x OTP support 2009-09-17 09:46:59 +02:00
wm8350-core.c mfd: Convert WM8350 to use request_threaded_irq() 2009-09-17 15:48:18 +02:00
wm8350-gpio.c
wm8350-i2c.c
wm8350-regmap.c
wm8400-core.c mfd: early init for MFD running regulators 2009-06-17 19:41:54 +02:00