diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-12-02 11:50:26 +0100 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-12-04 12:32:04 +0100 |
commit | 011f2c26f1b62e309f2eac6a3101bfe0a3c76c7e (patch) | |
tree | be53d4f11f7625508ee3aea9889e854ab5b5f263 /target/linux/brcm2708/patches-4.4/0457-drm-vc4-remove-redundant-ret-status-check.patch | |
parent | 4257f6548b9480cdb436115b63d5c134c5e91303 (diff) | |
download | upstream-011f2c26f1b62e309f2eac6a3101bfe0a3c76c7e.tar.gz upstream-011f2c26f1b62e309f2eac6a3101bfe0a3c76c7e.tar.bz2 upstream-011f2c26f1b62e309f2eac6a3101bfe0a3c76c7e.zip |
brcm2708: update linux 4.4 patches to latest version
As usual these patches were extracted and rebased from the raspberry pi repo:
https://github.com/raspberrypi/linux/tree/rpi-4.4.y
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.4/0457-drm-vc4-remove-redundant-ret-status-check.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.4/0457-drm-vc4-remove-redundant-ret-status-check.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/target/linux/brcm2708/patches-4.4/0457-drm-vc4-remove-redundant-ret-status-check.patch b/target/linux/brcm2708/patches-4.4/0457-drm-vc4-remove-redundant-ret-status-check.patch deleted file mode 100644 index 7887f60d04..0000000000 --- a/target/linux/brcm2708/patches-4.4/0457-drm-vc4-remove-redundant-ret-status-check.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 2b643111b81df8724f317507471499660f4fc6f6 Mon Sep 17 00:00:00 2001 -From: Colin Ian King <colin.king@canonical.com> -Date: Sat, 9 Jul 2016 23:26:03 +0100 -Subject: [PATCH] drm/vc4: remove redundant ret status check - -At the current point where ret is being checked for non-zero it has -not changed since it was initialized to zero, hence the check and the -label unref are redundant and can be removed. - -Signed-off-by: Colin Ian King <colin.king@canonical.com> -Reviewed-by: Eric Anholt <eric@anholt.net> -(cherry picked from commit deb4765db386db67626ffd075d8b5eb5fdf9c4f6) ---- - drivers/gpu/drm/vc4/vc4_drv.c | 3 --- - 1 file changed, 3 deletions(-) - ---- a/drivers/gpu/drm/vc4/vc4_drv.c -+++ b/drivers/gpu/drm/vc4/vc4_drv.c -@@ -233,8 +233,6 @@ static int vc4_drm_bind(struct device *d - vc4_bo_cache_init(drm); - - drm_mode_config_init(drm); -- if (ret) -- goto unref; - - vc4_gem_init(drm); - -@@ -268,7 +266,6 @@ unbind_all: - component_unbind_all(dev, drm); - gem_destroy: - vc4_gem_destroy(drm); --unref: - drm_dev_unref(drm); - vc4_bo_cache_destroy(drm); - return ret; |