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:
46f6dac
)
[PATCH] fix acpi_video_flags on x86-64
author
Stefan Seyfried
<
[email protected]
>
Thu, 2 Mar 2006 10:54:34 +0000
(
02:54
-0800)
committer
Linus Torvalds
<
[email protected]
>
Thu, 2 Mar 2006 16:33:07 +0000
(08:33 -0800)
acpi_video_flags variable is unsigned long, so it should be set as such.
This actually matters on x86-64.
Signed-off-by: Stefan Seyfried <
[email protected]
>
Signed-off-by: Pavel Machek <
[email protected]
>
Cc: "Brown, Len" <
[email protected]
>
Cc: Andi Kleen <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
kernel/sysctl.c
patch
|
blob
|
history
diff --git
a/kernel/sysctl.c
b/kernel/sysctl.c
index acf6c1550f2747105500dd55bb2c39709d2e9687..de2d9109194ef75a6bb5257bf06de852c98f9366 100644
(file)
--- a/
kernel/sysctl.c
+++ b/
kernel/sysctl.c
@@
-667,7
+667,7
@@
static ctl_table kern_table[] = {
.data = &acpi_video_flags,
.maxlen = sizeof (unsigned long),
.mode = 0644,
- .proc_handler = &proc_do
intvec
,
+ .proc_handler = &proc_do
ulongvec_minmax
,
},
#endif
#ifdef CONFIG_IA64