projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73ba859
)
amd64_edac: Cleanup return type of amd64_determine_edac_cap()
author
Dan Carpenter
<
[email protected]
>
Thu, 6 Oct 2011 06:30:25 +0000
(
02:30
-0400)
committer
Borislav Petkov
<
[email protected]
>
Thu, 6 Oct 2011 10:35:46 +0000
(12:35 +0200)
Sparse complains that edac_cap was declared as dev_type and we are
returning edac_type. Historically, edac_type was correct but since
then we have changed it to return a bit field.
Signed-off-by: Dan Carpenter <
[email protected]
>
Link:
http://lkml.kernel.org/r/20111006063025.GA2615@mwanda
Signed-off-by: Borislav Petkov <
[email protected]
>
drivers/edac/amd64_edac.c
patch
|
blob
|
history
diff --git
a/drivers/edac/amd64_edac.c
b/drivers/edac/amd64_edac.c
index 367756a48ebed8256af0d7cece1f14aacf64caa5..c9eee6d33e9a70cf5f851570c48ff3086b93c39a 100644
(file)
--- a/
drivers/edac/amd64_edac.c
+++ b/
drivers/edac/amd64_edac.c
@@
-768,10
+768,10
@@
static int get_channel_from_ecc_syndrome(struct mem_ctl_info *, u16);
* Determine if the DIMMs have ECC enabled. ECC is enabled ONLY if all the DIMMs
* are ECC capable.
*/
-static
enum edac_type
amd64_determine_edac_cap(struct amd64_pvt *pvt)
+static
unsigned long
amd64_determine_edac_cap(struct amd64_pvt *pvt)
{
u8 bit;
-
enum dev_type
edac_cap = EDAC_FLAG_NONE;
+
unsigned long
edac_cap = EDAC_FLAG_NONE;
bit = (boot_cpu_data.x86 > 0xf || pvt->ext_model >= K8_REV_F)
? 19