Skip to content

Commit

Permalink
ARM: SAMSUNG: Fix mask value for S5P64X0 CPU IDs
Browse files Browse the repository at this point in the history
The current value for S5P64XX_CPU_MASK does not include the necessary
bits, which causes detection failure.

Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com>
[kgene.kim@samsung.com: changed the value]
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Ajay Kumar authored and Kukjin Kim committed Sep 5, 2011
1 parent 2747f5e commit b02b5da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-samsung/include/plat/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extern unsigned long samsung_cpu_id;

#define S5P6440_CPU_ID 0x56440000
#define S5P6450_CPU_ID 0x36450000
#define S5P64XX_CPU_MASK 0x1FF40000
#define S5P64XX_CPU_MASK 0xFFFFF000

#define S5PC100_CPU_ID 0x43100000
#define S5PC100_CPU_MASK 0xFFFFF000
Expand Down

0 comments on commit b02b5da

Please sign in to comment.