diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-04-16 12:37:04 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-16 10:27:40 -0400 |
commit | 313c5197c584cb9d17b46e9b8577459e58cdca49 (patch) | |
tree | 12f8aea356f07b706a449fa4e6cd466b3a78cfb4 /drivers/staging/media | |
parent | 22457cb2de13d9ca0e4a273f7a119a9702b4b537 (diff) | |
download | lwn-313c5197c584cb9d17b46e9b8577459e58cdca49.tar.gz lwn-313c5197c584cb9d17b46e9b8577459e58cdca49.zip |
media: staging: atomisp: get rid of __KERNEL macros
There's no sense for a Kernel driver to have __KERNEL macros
on it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/staging/media')
5 files changed, 0 insertions, 42 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/system_local.h b/drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/system_local.h index c16670989702..5600b32e29f4 100644 --- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/system_local.h +++ b/drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/system_local.h @@ -31,23 +31,8 @@ #define HRT_ADDRESS_WIDTH 64 /* Surprise, this is a local property */ #endif -#if !defined(__KERNEL__) || (1 == 1) /* This interface is deprecated */ #include "hrt/hive_types.h" -#else /* __KERNEL__ */ -#include <type_support.h> - -#if HRT_ADDRESS_WIDTH == 64 -typedef uint64_t hrt_address; -#elif HRT_ADDRESS_WIDTH == 32 -typedef uint32_t hrt_address; -#else -#error "system_local.h: HRT_ADDRESS_WIDTH must be one of {32,64}" -#endif - -typedef uint32_t hrt_vaddress; -typedef uint32_t hrt_data; -#endif /* __KERNEL__ */ /* * Cell specific address maps diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/system_local.h b/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/system_local.h index 111b346dfafb..8be1cd020bf4 100644 --- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/system_local.h +++ b/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/system_local.h @@ -33,23 +33,8 @@ #define HRT_ADDRESS_WIDTH 64 /* Surprise, this is a local property */ #endif -#if !defined(__KERNEL__) || (1==1) /* This interface is deprecated */ #include "hrt/hive_types.h" -#else /* __KERNEL__ */ -#include <linux/types.h> - -#if HRT_ADDRESS_WIDTH==64 -typedef uint64_t hrt_address; -#elif HRT_ADDRESS_WIDTH==32 -typedef uint32_t hrt_address; -#else -#error "system_local.h: HRT_ADDRESS_WIDTH must be one of {32,64}" -#endif - -typedef uint32_t hrt_vaddress; -typedef uint32_t hrt_data; -#endif /* __KERNEL__ */ /* * Cell specific address maps diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/math_support.h b/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/math_support.h index 6436dae0007e..7c52ba54fcf1 100644 --- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/math_support.h +++ b/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/math_support.h @@ -15,9 +15,7 @@ #ifndef __MATH_SUPPORT_H #define __MATH_SUPPORT_H -#if defined(__KERNEL__) #include <linux/kernel.h> /* Override the definition of max/min from linux kernel*/ -#endif /*__KERNEL__*/ #if defined(_MSC_VER) #include <stdlib.h> /* Override the definition of max/min from stdlib.h*/ @@ -216,8 +214,5 @@ static inline unsigned int ceil_pow2(unsigned int a) #define OP_std_modadd(base, offset, size) ((base+offset)%(size)) #endif /* !defined(__ISP) */ -#if !defined(__KERNEL__) -#define clamp(a, min_val, max_val) MIN(MAX((a), (min_val)), (max_val)) -#endif /* !defined(__KERNEL__) */ #endif /* __MATH_SUPPORT_H */ diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/print_support.h b/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/print_support.h index ca0fbbb57788..37e8116b74a4 100644 --- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/print_support.h +++ b/drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/print_support.h @@ -17,9 +17,6 @@ #include <stdarg.h> -#if !defined(__KERNEL__) -#include <stdio.h> -#endif extern int (*sh_css_printf) (const char *fmt, va_list args); /* depends on host supplied print function in ia_css_init() */ diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.c b/drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.c index 85263725540d..cdbe914787c8 100644 --- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.c +++ b/drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.c @@ -1592,10 +1592,6 @@ ia_css_pipe_set_irq_mask(struct ia_css_pipe *pipe, * - compare with (uint16_t)~0 or 0xffff * - different assert for Linux and Windows */ -#ifndef __KERNEL__ - assert(or_mask <= UINT16_MAX); - assert(and_mask <= UINT16_MAX); -#endif (void)HIVE_ADDR_host_sp_com; /* Suppres warnings in CRUN */ |