OSDN Git Service

intel: Load the driver even if I915_PARAM_REVISION is not found.
authorRafael Antognolli <rafael.antognolli@intel.com>
Mon, 19 Aug 2019 19:28:55 +0000 (12:28 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 7 Feb 2020 17:20:49 +0000 (09:20 -0800)
This param is only available starting on kernel 4.1. Use a default
value of 0 if it is not found instead.

v2: Update commit message (Lionel)

Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Mark Janes <mark.a.janes@intel.com>
Fixes: 96e1c945f2b ("i965: Move device info initialization to common
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3727>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3727>
(cherry picked from commit 4aa7af9e9a4c19e10afaf4a3c756e62cf4d352c3)

.pick_status.json
src/intel/dev/gen_device_info.c

index af4f23f..19484bb 100644 (file)
         "description": "intel: Load the driver even if I915_PARAM_REVISION is not found.",
         "nominated": true,
         "nomination_type": 1,
-        "resolution": 0,
+        "resolution": 1,
         "master_sha": null,
         "because_sha": "96e1c945f2bc4047a603753ae10fc4f27754361c"
     },
index db93816..de16db7 100644 (file)
@@ -1421,7 +1421,7 @@ gen_get_device_info_from_fd(int fd, struct gen_device_info *devinfo)
       return false;
 
    if (!getparam(fd, I915_PARAM_REVISION, &devinfo->revision))
-       return false;
+      devinfo->revision = 0;
 
    if (!query_topology(devinfo, fd)) {
       if (devinfo->gen >= 10) {