summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSegher Boessenkool <segher@kernel.crashing.org>2007-05-16 15:12:16 (GMT)
committerPaul Mackerras <paulus@samba.org>2007-06-14 12:29:55 (GMT)
commit31fe5bf66a09c36e95b4c04291249b251b52f2d4 (patch)
tree8e04b62608456218559fdbddc54f682853d38e5a /arch
parentf341973d9a48b0643b619debd8d9ab1e518ebc34 (diff)
downloadlinux-fsl-qoriq-31fe5bf66a09c36e95b4c04291249b251b52f2d4.tar.xz
[POWERPC] Fix VDSO compile warning
Maybe the type should have been char[] instead of __u8[] in the first place, but this will do. Signed-off-by: Segher Boessenkool <segher@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/kernel/vdso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c
index 4245579..cef01e4 100644
--- a/arch/powerpc/kernel/vdso.c
+++ b/arch/powerpc/kernel/vdso.c
@@ -670,7 +670,7 @@ static int __init vdso_init(void)
/*
* Fill up the "systemcfg" stuff for backward compatiblity
*/
- strcpy(vdso_data->eye_catcher, "SYSTEMCFG:PPC64");
+ strcpy((char *)vdso_data->eye_catcher, "SYSTEMCFG:PPC64");
vdso_data->version.major = SYSTEMCFG_MAJOR;
vdso_data->version.minor = SYSTEMCFG_MINOR;
vdso_data->processor = mfspr(SPRN_PVR);