drivers/gpu/drm/openchrome/openchrome_drv.c |    1 +
 drivers/gpu/drm/openchrome/openchrome_drv.h |    4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 172d6fe5e9d79eeb4c7ba10236149a785e5f0359
Author: Kevin Brace <kevinbr...@gmx.com>
Date:   Fri Jan 14 17:19:22 2022 -0600

    drm/openchrome: Version bumped to 3.4.13
    
    Signed-off-by: Kevin Brace <kevinbr...@gmx.com>

diff --git a/drivers/gpu/drm/openchrome/openchrome_drv.h 
b/drivers/gpu/drm/openchrome/openchrome_drv.h
index d1c5f72130b2..db75e013fe4f 100644
--- a/drivers/gpu/drm/openchrome/openchrome_drv.h
+++ b/drivers/gpu/drm/openchrome/openchrome_drv.h
@@ -60,10 +60,10 @@
 
 #define DRIVER_MAJOR           3
 #define DRIVER_MINOR           4
-#define DRIVER_PATCHLEVEL      12
+#define DRIVER_PATCHLEVEL      13
 #define DRIVER_NAME            "openchrome"
 #define DRIVER_DESC            "OpenChrome DRM for VIA Technologies Chrome IGP"
-#define DRIVER_DATE            "20220107"
+#define DRIVER_DATE            "20220114"
 #define DRIVER_AUTHOR          "OpenChrome Project"
 
 
commit 07bd8bab7f5a138dbbf2249b5bf1c1ab2ebd6a4f
Author: Kevin Brace <kevinbr...@gmx.com>
Date:   Fri Jan 14 17:12:27 2022 -0600

    drm/openchrome: Return -EINVAL if KMS is disabled
    
    Signed-off-by: Kevin Brace <kevinbr...@gmx.com>

diff --git a/drivers/gpu/drm/openchrome/openchrome_drv.c 
b/drivers/gpu/drm/openchrome/openchrome_drv.c
index 8d16de74eae6..54d4c2d1efba 100644
--- a/drivers/gpu/drm/openchrome/openchrome_drv.c
+++ b/drivers/gpu/drm/openchrome/openchrome_drv.c
@@ -271,6 +271,7 @@ static int __init openchrome_init(void)
        }
 
        if (!openchrome_modeset) {
+               ret = -EINVAL;
                goto exit;
        }
 

Reply via email to