Skip to content

Commit

Permalink
gxt4500: enable panning
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ondrej Zary authored and Tomi Valkeinen committed Oct 8, 2015
1 parent 38fc4d4 commit 2035608
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/video/fbdev/gxt4500.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 2035608

Please sign in to comment.