diff options
| author | Michal Simek <monstr@monstr.eu> | 2011-02-07 05:56:14 -0500 |
|---|---|---|
| committer | Michal Simek <monstr@monstr.eu> | 2011-03-09 02:09:58 -0500 |
| commit | 8afe3839a993beda2ebc119c0a545dcc5baecc08 (patch) | |
| tree | 2280d4e4735109040fa506abf9590d5ca12592f5 /arch/microblaze/include | |
| parent | 419ef3406a16dfb765538f7bd67728fef9877472 (diff) | |
microblaze: Fix sparse warning - cpuinfo.h
Warning log:
CHECK arch/microblaze/kernel/cpu/cpuinfo-static.c
arch/microblaze/include/asm/cpuinfo.h:101:21: warning: incorrect type in argument 1 (different signedness)
arch/microblaze/include/asm/cpuinfo.h:101:21: expected unsigned int const [usertype] *p
arch/microblaze/include/asm/cpuinfo.h:101:21: got int *[assigned] val
...
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include')
| -rw-r--r-- | arch/microblaze/include/asm/cpuinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/include/asm/cpuinfo.h b/arch/microblaze/include/asm/cpuinfo.h index cd257537ae54..d8f013347a9e 100644 --- a/arch/microblaze/include/asm/cpuinfo.h +++ b/arch/microblaze/include/asm/cpuinfo.h | |||
| @@ -96,8 +96,8 @@ void set_cpuinfo_pvr_full(struct cpuinfo *ci, struct device_node *cpu); | |||
| 96 | 96 | ||
| 97 | static inline unsigned int fcpu(struct device_node *cpu, char *n) | 97 | static inline unsigned int fcpu(struct device_node *cpu, char *n) |
| 98 | { | 98 | { |
| 99 | int *val; | 99 | const __be32 *val; |
| 100 | return (val = (int *) of_get_property(cpu, n, NULL)) ? | 100 | return (val = of_get_property(cpu, n, NULL)) ? |
| 101 | be32_to_cpup(val) : 0; | 101 | be32_to_cpup(val) : 0; |
| 102 | } | 102 | } |
| 103 | 103 | ||
