diff options
| author | Anatolij Gustschin <[email protected]> | 2008-06-12 12:40:11 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2008-06-19 22:48:45 +0200 |
| commit | 96026d42fa4e646d28318c0a1438aac4b2017909 (patch) | |
| tree | c47dd70e31e39917093f0ecc0b1cd968ef80571d /include/asm-ppc/processor.h | |
| parent | a94f22f08f280905926219e568568964cb9eeb9d (diff) | |
Fix 4xx build issue
Building for 4xx doesn't work since commit 4dbdb768:
In file included from 4xx_pcie.c:28:
include/asm/processor.h:971: error: expected ')' before 'ver'
make[1]: *** [4xx_pcie.o] Error 1
This patch fixes the problem.
Signed-off-by: Anatolij Gustschin <[email protected]>
Acked-by: Stefan Roese <[email protected]>
Acked-by: Kumar Gala <[email protected]>
Diffstat (limited to 'include/asm-ppc/processor.h')
| -rw-r--r-- | include/asm-ppc/processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index 139e6869df7..5b506791a77 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -968,7 +968,7 @@ struct cpu_type { u32 soc_ver; }; -struct cpu_type *identify_cpu(uint ver); +struct cpu_type *identify_cpu(u32 ver); #define CPU_TYPE_ENTRY(n, v) \ { .name = #n, .soc_ver = SVR_##v, } |
