mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-24 19:53:25 +08:00
gdsys: osd: Allow osdsize on valid screens only
Limit "osdsize"-command to access valid screens only. Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
52b13f275e
commit
df3223f9f7
@ -469,6 +469,9 @@ int osd_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
}
|
||||
|
||||
for (screen = 0; screen < MAX_OSD_SCREEN; ++screen) {
|
||||
if (!(osd_screen_mask & (1 << screen)))
|
||||
continue;
|
||||
|
||||
OSD_SET_REG(screen, xy_size, ((x - 1) << 8) | (y - 1));
|
||||
OSD_SET_REG(screen, x_pos, 32767 * (640 - 12 * x) / 65535);
|
||||
OSD_SET_REG(screen, y_pos, 32767 * (480 - 18 * y) / 65535);
|
||||
|
Loading…
Reference in New Issue
Block a user