Skip to content

Commit

Permalink
Merge tag 'samsung-drivers-4.8-3' of git://git.kernel.org/pub/scm/lin…
Browse files Browse the repository at this point in the history
…ux/kernel/git/krzk/linux into next/drivers

Merge "Samsung drivers/soc update for v4.8, part 3" into next/drivers:

1. Fix size of allocation for Exynos SROM registers (too much was allocated).
2. Constify fix.

* tag 'samsung-drivers-4.8-3' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux:
  soc: samsung: pmu: Constify arrays with PMU data
  memory: samsung: exynos-srom: Fix wrong count of registers
  • Loading branch information
arndb committed Jul 14, 2016
2 parents f1844ac + aec6341 commit f8c6d88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/memory/samsung/exynos-srom.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static int exynos_srom_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, srom);

srom->reg_offset = exynos_srom_alloc_reg_dump(exynos_srom_offsets,
sizeof(exynos_srom_offsets));
ARRAY_SIZE(exynos_srom_offsets));
if (!srom->reg_offset) {
iounmap(srom->reg_base);
return -ENOMEM;
Expand Down
2 changes: 1 addition & 1 deletion drivers/soc/samsung/exynos3250-pmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include "exynos-pmu.h"

static struct exynos_pmu_conf exynos3250_pmu_config[] = {
static const struct exynos_pmu_conf exynos3250_pmu_config[] = {
/* { .offset = offset, .val = { AFTR, W-AFTR, SLEEP } */
{ EXYNOS3_ARM_CORE0_SYS_PWR_REG, { 0x0, 0x0, 0x2} },
{ EXYNOS3_DIS_IRQ_ARM_CORE0_LOCAL_SYS_PWR_REG, { 0x0, 0x0, 0x0} },
Expand Down
2 changes: 1 addition & 1 deletion drivers/soc/samsung/exynos5420-pmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include "exynos-pmu.h"

static struct exynos_pmu_conf exynos5420_pmu_config[] = {
static const struct exynos_pmu_conf exynos5420_pmu_config[] = {
/* { .offset = offset, .val = { AFTR, LPA, SLEEP } */
{ EXYNOS5_ARM_CORE0_SYS_PWR_REG, { 0x0, 0x0, 0x0} },
{ EXYNOS5_DIS_IRQ_ARM_CORE0_LOCAL_SYS_PWR_REG, { 0x0, 0x0, 0x0} },
Expand Down

0 comments on commit f8c6d88

Please sign in to comment.