diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-07-09 00:32:27 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-07-09 11:58:10 -0300 |
commit | 41b9e268389d5108661a30ed952d8b546fca3c68 (patch) | |
tree | 674e376119c3c43009706d5d6b6128b3e3c805d4 /libre/linux-libre-grsec/0001-drm-radeon-Make-the-driver-load-without-the-firmwares.patch | |
parent | 5351ed6061496283feff26cada716255a0e0e61b (diff) | |
download | abslibre-41b9e268389d5108661a30ed952d8b546fca3c68.tar.gz abslibre-41b9e268389d5108661a30ed952d8b546fca3c68.tar.bz2 abslibre-41b9e268389d5108661a30ed952d8b546fca3c68.zip |
linux-libre-grsec{,-knock}-4.6.3_gnu.201607070721-1: updating version
Diffstat (limited to 'libre/linux-libre-grsec/0001-drm-radeon-Make-the-driver-load-without-the-firmwares.patch')
-rw-r--r-- | libre/linux-libre-grsec/0001-drm-radeon-Make-the-driver-load-without-the-firmwares.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/libre/linux-libre-grsec/0001-drm-radeon-Make-the-driver-load-without-the-firmwares.patch b/libre/linux-libre-grsec/0001-drm-radeon-Make-the-driver-load-without-the-firmwares.patch deleted file mode 100644 index 120d1e1c1..000000000 --- a/libre/linux-libre-grsec/0001-drm-radeon-Make-the-driver-load-without-the-firmwares.patch +++ /dev/null @@ -1,51 +0,0 @@ -From e479cd018fcd7f32714e5172265f8d1e7c4d9f0d Mon Sep 17 00:00:00 2001 -From: Jason Self <j@jxself.org> -Date: Sun, 30 Aug 2015 14:27:44 -0700 -Subject: [PATCH 1/3] drm/radeon: Make the driver load without the - firmwares. - -Reviewed-by: André Silva <emulatorman@parabola.nu> ---- - drivers/gpu/drm/radeon/r600.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c -index ca4c01f..2062228 100644 ---- a/drivers/gpu/drm/radeon/r600.c -+++ b/drivers/gpu/drm/radeon/r600.c -@@ -2489,7 +2489,7 @@ int r600_init_microcode(struct radeon_device *rdev) - } - - DRM_INFO("Loading %s Microcode\n", chip_name); -- -+#if 0 - snprintf(fw_name, sizeof(fw_name), "/*(DEBLOBBED)*/", chip_name); - err = reject_firmware(&rdev->pfp_fw, fw_name, rdev->dev); - if (err) -@@ -2541,7 +2541,7 @@ int r600_init_microcode(struct radeon_device *rdev) - err = -EINVAL; - } - } -- -+#endif - out: - if (err) { - if (err != -EINVAL) -@@ -3201,7 +3201,7 @@ int r600_init(struct radeon_device *rdev) - r = radeon_bo_init(rdev); - if (r) - return r; -- -+#if 0 - if (!rdev->me_fw || !rdev->pfp_fw || !rdev->rlc_fw) { - r = r600_init_microcode(rdev); - if (r) { -@@ -3209,7 +3209,7 @@ int r600_init(struct radeon_device *rdev) - return r; - } - } -- -+#endif - /* Initialize power management */ - radeon_pm_init(rdev); - |