Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d9c452f4
Commit
d9c452f4
authored
Apr 17, 2012
by
Kukjin Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: SAMSUNG: move setup code for s5p mfc and mipiphy into plat-samsung
Signed-off-by:
Kukjin Kim
<
kgene.kim@samsung.com
>
parent
cfe370f8
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
18 deletions
+14
-18
arch/arm/plat-s5p/Kconfig
arch/arm/plat-s5p/Kconfig
+0
-10
arch/arm/plat-s5p/Makefile
arch/arm/plat-s5p/Makefile
+0
-5
arch/arm/plat-samsung/Kconfig
arch/arm/plat-samsung/Kconfig
+10
-0
arch/arm/plat-samsung/Makefile
arch/arm/plat-samsung/Makefile
+3
-0
arch/arm/plat-samsung/s5p-dev-mfc.c
arch/arm/plat-samsung/s5p-dev-mfc.c
+1
-3
arch/arm/plat-samsung/setup-mipiphy.c
arch/arm/plat-samsung/setup-mipiphy.c
+0
-0
No files found.
arch/arm/plat-s5p/Kconfig
View file @
d9c452f4
...
@@ -63,11 +63,6 @@ config S5P_DEV_I2C_HDMIPHY
...
@@ -63,11 +63,6 @@ config S5P_DEV_I2C_HDMIPHY
help
help
Compile in platform device definitions for I2C HDMIPHY controller
Compile in platform device definitions for I2C HDMIPHY controller
config S5P_DEV_MFC
bool
help
Compile in platform device definitions for MFC
config S5P_DEV_ONENAND
config S5P_DEV_ONENAND
bool
bool
help
help
...
@@ -92,8 +87,3 @@ config S5P_DEV_USB_EHCI
...
@@ -92,8 +87,3 @@ config S5P_DEV_USB_EHCI
bool
bool
help
help
Compile in platform device definition for USB EHCI
Compile in platform device definition for USB EHCI
config S5P_SETUP_MIPIPHY
bool
help
Compile in common setup code for MIPI-CSIS and MIPI-DSIM devices
arch/arm/plat-s5p/Makefile
View file @
d9c452f4
...
@@ -9,8 +9,3 @@ obj-y :=
...
@@ -9,8 +9,3 @@ obj-y :=
obj-m
:=
obj-m
:=
obj-n
:=
dummy.o
obj-n
:=
dummy.o
obj-
:=
obj-
:=
# devices
obj-$(CONFIG_S5P_DEV_MFC)
+=
dev-mfc.o
obj-$(CONFIG_S5P_SETUP_MIPIPHY)
+=
setup-mipiphy.o
arch/arm/plat-samsung/Kconfig
View file @
d9c452f4
...
@@ -309,6 +309,11 @@ config SAMSUNG_DEV_BACKLIGHT
...
@@ -309,6 +309,11 @@ config SAMSUNG_DEV_BACKLIGHT
help
help
Compile in platform device definition LCD backlight with PWM Timer
Compile in platform device definition LCD backlight with PWM Timer
config S5P_DEV_MFC
bool
help
Compile in setup memory (init) code for MFC
config S3C24XX_PWM
config S3C24XX_PWM
bool "PWM device support"
bool "PWM device support"
select HAVE_PWM
select HAVE_PWM
...
@@ -316,6 +321,11 @@ config S3C24XX_PWM
...
@@ -316,6 +321,11 @@ config S3C24XX_PWM
Support for exporting the PWM timer blocks via the pwm device
Support for exporting the PWM timer blocks via the pwm device
system
system
config S5P_SETUP_MIPIPHY
bool
help
Compile in common setup code for MIPI-CSIS and MIPI-DSIM devices
# DMA
# DMA
config S3C_DMA
config S3C_DMA
...
...
arch/arm/plat-samsung/Makefile
View file @
d9c452f4
...
@@ -36,10 +36,13 @@ obj-y += platformdata.o
...
@@ -36,10 +36,13 @@ obj-y += platformdata.o
obj-y
+=
devs.o
obj-y
+=
devs.o
obj-y
+=
dev-uart.o
obj-y
+=
dev-uart.o
obj-$(CONFIG_S5P_DEV_MFC)
+=
s5p-dev-mfc.o
obj-$(CONFIG_S5P_DEV_UART)
+=
s5p-dev-uart.o
obj-$(CONFIG_S5P_DEV_UART)
+=
s5p-dev-uart.o
obj-$(CONFIG_SAMSUNG_DEV_BACKLIGHT)
+=
dev-backlight.o
obj-$(CONFIG_SAMSUNG_DEV_BACKLIGHT)
+=
dev-backlight.o
obj-$(CONFIG_S5P_SETUP_MIPIPHY)
+=
setup-mipiphy.o
# DMA support
# DMA support
obj-$(CONFIG_S3C_DMA)
+=
dma.o s3c-dma-ops.o
obj-$(CONFIG_S3C_DMA)
+=
dma.o s3c-dma-ops.o
...
...
arch/arm/plat-s
5p/
dev-mfc.c
→
arch/arm/plat-s
amsung/s5p-
dev-mfc.c
View file @
d9c452f4
/* linux/arch/arm/plat-s5p/dev-mfc.c
/*
*
* Copyright (C) 2010-2011 Samsung Electronics Co.Ltd
* Copyright (C) 2010-2011 Samsung Electronics Co.Ltd
*
*
* Base S5P MFC resource and device definitions
* Base S5P MFC resource and device definitions
...
@@ -9,7 +8,6 @@
...
@@ -9,7 +8,6 @@
* published by the Free Software Foundation.
* published by the Free Software Foundation.
*/
*/
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/platform_device.h>
...
...
arch/arm/plat-s
5p
/setup-mipiphy.c
→
arch/arm/plat-s
amsung
/setup-mipiphy.c
View file @
d9c452f4
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment