atyfb: remove resolution limit 1600
authorMikulas Patocka <mpatocka@redhat.com>
Thu, 23 Jan 2014 19:40:28 +0000 (14:40 -0500)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 11 Feb 2014 13:01:04 +0000 (15:01 +0200)
The card works fine in 1980x1080 resolution. Therefore, there is no need
to limit the resolution to 1600 pixels.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/aty/atyfb_base.c

index 28fafbf864a50e91c7ef13135abec9bb9ca2b407..5d7672cf2c70df2e1bef31110bda346a4d65c6a0 100644 (file)
@@ -862,8 +862,8 @@ static int aty_var_to_crtc(const struct fb_info *info,
        h_sync_pol = sync & FB_SYNC_HOR_HIGH_ACT ? 0 : 1;
        v_sync_pol = sync & FB_SYNC_VERT_HIGH_ACT ? 0 : 1;
 
-       if ((xres > 1600) || (yres > 1200)) {
-               FAIL("MACH64 chips are designed for max 1600x1200\n"
+       if ((xres > 1920) || (yres > 1200)) {
+               FAIL("MACH64 chips are designed for max 1920x1200\n"
                     "select another resolution.");
        }
        h_sync_strt = h_disp + var->right_margin;