diff options
author | Olaf Hering <olaf@aepfle.de> | 2014-04-11 08:56:23 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-14 08:59:51 -0800 |
commit | afb375630bd3d064886a8f2be1e3e8228469879a (patch) | |
tree | 5d2ebaf16f55987c5316845f1249c26965e10bef /drivers | |
parent | 63a83a42f14707f9c1be91ccbda8aa8bf12ecd53 (diff) | |
download | linux-stable-afb375630bd3d064886a8f2be1e3e8228469879a.tar.gz linux-stable-afb375630bd3d064886a8f2be1e3e8228469879a.tar.bz2 linux-stable-afb375630bd3d064886a8f2be1e3e8228469879a.zip |
drm/cirrus: bind also to qemu-xen-traditional
commit c0c3e735fa7bae29c6623511127fd021b2d6d849 upstream.
qemu as used by xend/xm toolstack uses a different subvendor id.
Bind the drm driver also to this emulated card.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/cirrus/cirrus_drv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/cirrus/cirrus_drv.c b/drivers/gpu/drm/cirrus/cirrus_drv.c index 08ce520f61a5..faa1f421f1b8 100644 --- a/drivers/gpu/drm/cirrus/cirrus_drv.c +++ b/drivers/gpu/drm/cirrus/cirrus_drv.c @@ -32,6 +32,8 @@ static struct drm_driver driver; static DEFINE_PCI_DEVICE_TABLE(pciidlist) = { { PCI_VENDOR_ID_CIRRUS, PCI_DEVICE_ID_CIRRUS_5446, 0x1af4, 0x1100, 0, 0, 0 }, + { PCI_VENDOR_ID_CIRRUS, PCI_DEVICE_ID_CIRRUS_5446, PCI_VENDOR_ID_XEN, + 0x0001, 0, 0, 0 }, {0,} }; |