gxt4500: enable panning
authorOndrej Zary <linux@rainbow-software.org>
Thu, 1 Oct 2015 21:22:55 +0000 (23:22 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Thu, 8 Oct 2015 09:19:39 +0000 (12:19 +0300)
The driver implements pan_display but the corresponding flags are not set.

Add FBINFO_HWACCEL_XPAN and FBINFO_HWACCEL_YPAN to flags to allow HW
accelerated panning (for fast scrolling).

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/fbdev/gxt4500.c

index 31de6500efd0c4b20ab99c025cf95411a74e0ad2..f438546290dfc3c133298f5711f26d032f4045f9 100644 (file)
@@ -685,7 +685,8 @@ static int gxt4500_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 #endif
 
        info->fbops = &gxt4500_ops;
-       info->flags = FBINFO_FLAG_DEFAULT;
+       info->flags = FBINFO_FLAG_DEFAULT | FBINFO_HWACCEL_XPAN |
+                                           FBINFO_HWACCEL_YPAN;
 
        err = fb_alloc_cmap(&info->cmap, 256, 0);
        if (err) {
This page took 0.026643 seconds and 5 git commands to generate.