diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
commit | 00813d4dd976cc823fa089840ff2f4a10dd6cd0c (patch) | |
tree | 8f2c74a928c9ea0eceb64809d9039db824ae6663 /target/linux/brcm2708/patches-4.14/950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch | |
parent | 19226502bf6393706defe7f049c587b32c9b4f33 (diff) | |
download | upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.gz upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.bz2 upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.zip |
brcm2708: remove linux 4.14 support
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.14/950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.14/950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/target/linux/brcm2708/patches-4.14/950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch b/target/linux/brcm2708/patches-4.14/950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch deleted file mode 100644 index 780fd6c54e..0000000000 --- a/target/linux/brcm2708/patches-4.14/950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 2e485e16881f0aad726dd401df6e9f2eb96f64dd Mon Sep 17 00:00:00 2001 -From: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com> -Date: Thu, 4 Jan 2018 23:58:06 +0900 -Subject: [PATCH 148/454] vcsm: Define cache operation constants in user header - -Without this change, users have to use raw values (1, 2, 3) to specify -cache operation. - -Signed-off-by: Sugizaki Yukimasa <i.can.speak.c.and.basic@gmail.com> ---- - drivers/char/broadcom/vc_sm/vc_sm_knl.h | 5 ----- - include/linux/broadcom/vmcs_sm_ioctl.h | 5 +++++ - 2 files changed, 5 insertions(+), 5 deletions(-) - ---- a/drivers/char/broadcom/vc_sm/vc_sm_knl.h -+++ b/drivers/char/broadcom/vc_sm/vc_sm_knl.h -@@ -27,11 +27,6 @@ enum vc_sm_lock_cache_mode { - VC_SM_LOCK_NON_CACHED, - }; - --/* Cache functions */ --#define VCSM_CACHE_OP_INV 0x01 --#define VCSM_CACHE_OP_CLEAN 0x02 --#define VCSM_CACHE_OP_FLUSH 0x03 -- - /* Allocate a shared memory handle and block. */ - int vc_sm_alloc(struct vc_sm_alloc_t *alloc, int *handle); - ---- a/include/linux/broadcom/vmcs_sm_ioctl.h -+++ b/include/linux/broadcom/vmcs_sm_ioctl.h -@@ -79,6 +79,11 @@ enum vmcs_sm_cache_e { - VMCS_SM_CACHE_BOTH, - }; - -+/* Cache functions */ -+#define VCSM_CACHE_OP_INV 0x01 -+#define VCSM_CACHE_OP_CLEAN 0x02 -+#define VCSM_CACHE_OP_FLUSH 0x03 -+ - /* IOCTL Data structures */ - struct vmcs_sm_ioctl_alloc { - /* user -> kernel */ |