Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 166059
b: refs/heads/master
c: 337c1db
h: refs/heads/master
i:
  166057: 9845f4d
  166055: 5c2175c
v: v3
  • Loading branch information
Haojian Zhuang authored and Eric Miao committed Sep 10, 2009
1 parent a53874b commit 7cd535f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9db95cb6c430b3d9b8abbd5870e0d1e69b884ba0
refs/heads/master: 337c1db645bce3f5a832129c4a803dc157ac7e9a
5 changes: 4 additions & 1 deletion trunk/arch/arm/include/asm/cputype.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ static inline unsigned int __attribute_const__ read_cpuid_cachetype(void)
#else
static inline int cpu_is_xsc3(void)
{
if ((read_cpuid_id() & 0xffffe000) == 0x69056000)
unsigned int id;
id = read_cpuid_id() & 0xffffe000;
/* It covers both Intel ID and Marvell ID */
if ((id == 0x69056000) || (id == 0x56056000))
return 1;

return 0;
Expand Down

0 comments on commit 7cd535f

Please sign in to comment.