summaryrefslogtreecommitdiff
path: root/patches/collateral-evolutions/network
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-10-05 15:31:24 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2013-10-23 19:24:40 +0200
commitedb9303ae1caa6eef56f4ea4b850102c613d5e44 (patch)
tree2ee0a3921c8cf5af22ca864858be87b11b875f4a /patches/collateral-evolutions/network
parent5b9fc55d49cf43f34475a8ae49b3c8577e53e60e (diff)
backports: remove DRM driver
Maintaining the DRM driver takes a lot of recourses as there they are depending on many API changes done to the core kernel code and currently we do not have that many recourses to follow them. On the other side one needs also new userspace drivers to make use of the new features added to the DRM kernel drivers and it is not easy to update the X drivers. Therefore we came to the conclusion to remove the drm drivers for now. There were also some problems with some DRM drivers, like the Intel i915 driver caused kernel panic on some systems and was probably only usable on some very recent kernel versions. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'patches/collateral-evolutions/network')
-rw-r--r--patches/collateral-evolutions/network/70-umode_t-api-change/drivers_gpu_drm_drm_sysfs.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/patches/collateral-evolutions/network/70-umode_t-api-change/drivers_gpu_drm_drm_sysfs.patch b/patches/collateral-evolutions/network/70-umode_t-api-change/drivers_gpu_drm_drm_sysfs.patch
deleted file mode 100644
index 2f715a11..00000000
--- a/patches/collateral-evolutions/network/70-umode_t-api-change/drivers_gpu_drm_drm_sysfs.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/drivers/gpu/drm/drm_sysfs.c
-+++ b/drivers/gpu/drm/drm_sysfs.c
-@@ -98,7 +98,11 @@ static const struct dev_pm_ops drm_class
- .freeze = drm_class_freeze,
- };
-
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
- static char *drm_devnode(struct device *dev, umode_t *mode)
-+#else
-+static char *drm_devnode(struct device *dev, mode_t *mode)
-+#endif
- {
- return kasprintf(GFP_KERNEL, "dri/%s", dev_name(dev));
- }