Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190496
b: refs/heads/master
c: b20947a
h: refs/heads/master
v: v3
  • Loading branch information
Sebastian Andrzej Siewior authored and Ralf Baechle committed Apr 30, 2010
1 parent 33b36c9 commit 57e96c1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 28 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9eed4124c0d56d39b06224765c65eaa35f580edf
refs/heads/master: b20947aaa0026efd7355ae4bf70b56a13a3f98b1
12 changes: 3 additions & 9 deletions trunk/arch/mips/jazz/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,9 @@ void __init plat_mem_setup(void)

#ifdef CONFIG_VT
screen_info = (struct screen_info) {
0, 0, /* orig-x, orig-y */
0, /* unused */
0, /* orig_video_page */
0, /* orig_video_mode */
160, /* orig_video_cols */
0, 0, 0, /* unused, ega_bx, unused */
64, /* orig_video_lines */
0, /* orig_video_isVGA */
16 /* orig_video_points */
.orig_video_cols = 160,
.orig_video_lines = 64,
.orig_video_points = 16,
};
#endif

Expand Down
15 changes: 6 additions & 9 deletions trunk/arch/mips/loongson/common/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,12 @@ void __init plat_mem_setup(void)
conswitchp = &vga_con;

screen_info = (struct screen_info) {
0, 25, /* orig-x, orig-y */
0, /* unused */
0, /* orig-video-page */
0, /* orig-video-mode */
80, /* orig-video-cols */
0, 0, 0, /* ega_ax, ega_bx, ega_cx */
25, /* orig-video-lines */
VIDEO_TYPE_VGAC, /* orig-video-isVGA */
16 /* orig-video-points */
.orig_x = 0,
.orig_y = 25,
.orig_video_cols = 80,
.orig_video_lines = 25,
.orig_video_isVGA = VIDEO_TYPE_VGAC,
.orig_video_points = 16,
};
#elif defined(CONFIG_DUMMY_CONSOLE)
conswitchp = &dummy_con;
Expand Down
17 changes: 8 additions & 9 deletions trunk/arch/mips/sibyte/swarm/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,14 @@ void __init plat_mem_setup(void)

#ifdef CONFIG_VT
screen_info = (struct screen_info) {
0, 0, /* orig-x, orig-y */
0, /* unused */
52, /* orig_video_page */
3, /* orig_video_mode */
80, /* orig_video_cols */
4626, 3, 9, /* unused, ega_bx, unused */
25, /* orig_video_lines */
0x22, /* orig_video_isVGA */
16 /* orig_video_points */
.orig_video_page = 52,
.orig_video_mode = 3,
.orig_video_cols = 80,
.flags = 12,
.orig_video_ega_bx = 3,
.orig_video_lines = 25,
.orig_video_isVGA = 0x22,
.orig_video_points = 16,
};
/* XXXKW for CFE, get lines/cols from environment */
#endif
Expand Down

0 comments on commit 57e96c1

Please sign in to comment.