Skip to content

Commit

Permalink
ARM: S5P: Decrease IO Registers memory region size on FIMC
Browse files Browse the repository at this point in the history
IO registers region size of all FIMC versions is less than 1kB so there
is no need to reserve 1M.

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
[kgene.kim@samsung.com: minor title fix]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Sylwester Nawrocki authored and Kukjin Kim committed Sep 14, 2010
1 parent 0fe7f88 commit 80e2f36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/arm/plat-s5p/dev-fimc0.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
static struct resource s5p_fimc0_resource[] = {
[0] = {
.start = S5P_PA_FIMC0,
.end = S5P_PA_FIMC0 + SZ_1M - 1,
.end = S5P_PA_FIMC0 + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/plat-s5p/dev-fimc1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
static struct resource s5p_fimc1_resource[] = {
[0] = {
.start = S5P_PA_FIMC1,
.end = S5P_PA_FIMC1 + SZ_1M - 1,
.end = S5P_PA_FIMC1 + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/plat-s5p/dev-fimc2.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
static struct resource s5p_fimc2_resource[] = {
[0] = {
.start = S5P_PA_FIMC2,
.end = S5P_PA_FIMC2 + SZ_1M - 1,
.end = S5P_PA_FIMC2 + SZ_4K - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
Expand Down

0 comments on commit 80e2f36

Please sign in to comment.