drm/qxl: Use correct notify port address when creating cursor ring
authorHuacai Chen <chenhc@lemote.com>
Tue, 31 Mar 2020 06:18:08 +0000 (14:18 +0800)
committerGerd Hoffmann <kraxel@redhat.com>
Tue, 31 Mar 2020 14:48:00 +0000 (16:48 +0200)
commit80e5f89da3ab949fbbf1cae01dfaea29f5483a75
tree7d7255645a629007455a3db68c979b0c3ff20f5d
parent2713778cbfca756eccd754339b785712ef464a98
drm/qxl: Use correct notify port address when creating cursor ring

The command ring and cursor ring use different notify port addresses
definition: QXL_IO_NOTIFY_CMD and QXL_IO_NOTIFY_CURSOR. However, in
qxl_device_init() we use QXL_IO_NOTIFY_CMD to create both command ring
and cursor ring. This doesn't cause any problems now, because QEMU's
behaviors on QXL_IO_NOTIFY_CMD and QXL_IO_NOTIFY_CURSOR are the same.
However, QEMU's behavior may be change in future, so let's fix it.

P.S.: In the X.org QXL driver, the notify port address of cursor ring
      is correct.

Signed-off-by: Huacai Chen <chenhc@lemote.com>
Cc: <stable@vger.kernel.org>
Link: http://patchwork.freedesktop.org/patch/msgid/1585635488-17507-1-git-send-email-chenhc@lemote.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
drivers/gpu/drm/qxl/qxl_kms.c