Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0f73581 authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Ben Dooks
Browse files

ARM: SAMSUNG: Copy common I2C0 device helpers to machine directories

parent 838c6d49
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ obj- :=
# Core support for S5P6440 system

obj-$(CONFIG_CPU_S5P6440)	+= cpu.o init.o clock.o gpio.o dma.o
obj-$(CONFIG_CPU_S5P6440)	+= setup-i2c0.o

# machine support

+1 −1
Original line number Diff line number Diff line
/* linux/arch/arm/plat-s5p/setup-i2c0.c
/* linux/arch/arm/mach-s5p6440/setup-i2c0.c
 *
 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com/
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ obj- :=
# Core support for S5P6442 system

obj-$(CONFIG_CPU_S5P6442)	+= cpu.o init.o clock.o dma.o
obj-$(CONFIG_CPU_S5P6442)	+= setup-i2c0.o

# machine support

+25 −0
Original line number Diff line number Diff line
/* linux/arch/arm/mach-s5p6442/setup-i2c0.c
 *
 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com/
 *
 * I2C0 GPIO configuration.
 *
 * Based on plat-s3c64xx/setup-i2c0.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

#include <linux/kernel.h>
#include <linux/types.h>

struct platform_device; /* don't need the contents */

#include <plat/iic.h>

void s3c_i2c0_cfg_gpio(struct platform_device *dev)
{
	/* Will be populated later */
}
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ obj- :=
# Core support for S5PV210 system

obj-$(CONFIG_CPU_S5PV210)	+= cpu.o init.o clock.o dma.o gpiolib.o
obj-$(CONFIG_CPU_S5PV210)	+= setup-i2c0.o

# machine support

Loading