diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-17 01:36:04 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-17 01:57:17 -0400 |
commit | 3ea335100014785fd2518461705654b200e58d00 (patch) | |
tree | e8f25757f05c9cb0d97638fc8dc18e5e2ad05dbf /arch/arm/mach-footbridge/cats-hw.c | |
parent | 30c826451d3e5bbc6e11bba0e7fee5d2f49d9b75 (diff) |
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/mach-footbridge/cats-hw.c')
-rw-r--r-- | arch/arm/mach-footbridge/cats-hw.c | 6 |
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 | |||
78 | fixup_cats(struct machine_desc *desc, struct tag *tags, | 78 | fixup_cats(struct machine_desc *desc, struct tag *tags, |
79 | char **cmdline, struct meminfo *mi) | 79 | char **cmdline, struct meminfo *mi) |
80 | { | 80 | { |
81 | ORIG_VIDEO_LINES = 25; | 81 | screen_info.orig_video_lines = 25; |
82 | ORIG_VIDEO_POINTS = 16; | 82 | screen_info.orig_video_points = 16; |
83 | ORIG_Y = 24; | 83 | screen_info.orig_y = 24; |
84 | } | 84 | } |
85 | 85 | ||
86 | MACHINE_START(CATS, "Chalice-CATS") | 86 | MACHINE_START(CATS, "Chalice-CATS") |