aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-10-16 22:36:04 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-10-16 22:57:17 -0700
commit3ea335100014785fd2518461705654b200e58d00 (patch)
treee8f25757f05c9cb0d97638fc8dc18e5e2ad05dbf /arch/arm
parent[x86] remove uses of magic macros for boot_params access (diff)
downloadlinux-dev-3ea335100014785fd2518461705654b200e58d00.tar.xz
linux-dev-3ea335100014785fd2518461705654b200e58d00.zip
Remove magic macros for screen_info structure members
Stop using magic macros for screen_info structure members. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-footbridge/cats-hw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-footbridge/cats-hw.c b/arch/arm/mach-footbridge/cats-hw.c
index ef6ccc8993e9..c261472208cb 100644
--- a/arch/arm/mach-footbridge/cats-hw.c
+++ b/arch/arm/mach-footbridge/cats-hw.c
@@ -78,9 +78,9 @@ static void __init
fixup_cats(struct machine_desc *desc, struct tag *tags,
char **cmdline, struct meminfo *mi)
{
- ORIG_VIDEO_LINES = 25;
- ORIG_VIDEO_POINTS = 16;
- ORIG_Y = 24;
+ screen_info.orig_video_lines = 25;
+ screen_info.orig_video_points = 16;
+ screen_info.orig_y = 24;
}
MACHINE_START(CATS, "Chalice-CATS")