diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2015-10-01 17:22:55 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-10-08 05:19:39 -0400 |
commit | 2035608e126f4ddc6a48f6b04ef967f89db460e1 (patch) | |
tree | 736a1f61c387ae737497e693d0a04853d0d7829a | |
parent | 38fc4d45fae58d81786acfe81a13ec0c93b01c98 (diff) |
gxt4500: enable panning
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>
-rw-r--r-- | drivers/video/fbdev/gxt4500.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/fbdev/gxt4500.c b/drivers/video/fbdev/gxt4500.c index 31de6500efd0..f438546290df 100644 --- a/drivers/video/fbdev/gxt4500.c +++ b/drivers/video/fbdev/gxt4500.c | |||
@@ -685,7 +685,8 @@ static int gxt4500_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
685 | #endif | 685 | #endif |
686 | 686 | ||
687 | info->fbops = &gxt4500_ops; | 687 | info->fbops = &gxt4500_ops; |
688 | info->flags = FBINFO_FLAG_DEFAULT; | 688 | info->flags = FBINFO_FLAG_DEFAULT | FBINFO_HWACCEL_XPAN | |
689 | FBINFO_HWACCEL_YPAN; | ||
689 | 690 | ||
690 | err = fb_alloc_cmap(&info->cmap, 256, 0); | 691 | err = fb_alloc_cmap(&info->cmap, 256, 0); |
691 | if (err) { | 692 | if (err) { |