summaryrefslogtreecommitdiffstats
path: root/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp
diff options
context:
space:
mode:
authorAlan Cox2017-04-12 20:22:25 +0200
committerGreg Kroah-Hartman2017-04-14 10:08:32 +0200
commit37fd9c35e67b3a91c52dd721ca1bf3a7cbf81237 (patch)
tree7d163e7f37fa8a461d006f2158bb7235a4a94eac /drivers/staging/media/atomisp/pci/atomisp2/css2400/isp
parentatomisp: remove satm kernel (diff)
downloadkernel-qcow2-linux-37fd9c35e67b3a91c52dd721ca1bf3a7cbf81237.tar.gz
kernel-qcow2-linux-37fd9c35e67b3a91c52dd721ca1bf3a7cbf81237.tar.xz
kernel-qcow2-linux-37fd9c35e67b3a91c52dd721ca1bf3a7cbf81237.zip
atomisp: remove fixedbds kernel code
This is a whole pile of code that wraps a single assignment. Remove it and put the assignment in the caller. Once we have the kernels sorted we should revisit these and remove all the pointless 1 item structs that go with it. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/media/atomisp/pci/atomisp2/css2400/isp')
-rw-r--r--drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.c47
-rw-r--r--drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.h37
2 files changed, 0 insertions, 84 deletions
diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.c b/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.c
deleted file mode 100644
index 0ce5acecc8ee..000000000000
--- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Support for Intel Camera Imaging ISP subsystem.
- * Copyright (c) 2015, Intel Corporation.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- */
-
-#include "ia_css_types.h"
-#include "sh_css_defs.h"
-#include "ia_css_debug.h"
-
-#include "ia_css_fixedbds.host.h"
-
-void
-ia_css_bds_encode(
- struct sh_css_isp_bds_params *to,
- const struct ia_css_aa_config *from,
- unsigned size)
-{
- (void)size;
- to->baf_strength = from->strength;
-}
-
-void
-ia_css_bds_dump(
- const struct sh_css_isp_bds_params *bds,
- unsigned level)
-{
- (void)bds;
- (void)level;
-}
-
-void
-ia_css_bds_debug_dtrace(
- const struct ia_css_aa_config *config,
- unsigned level)
-{
- (void)config;
- (void)level;
-}
diff --git a/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.h b/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.h
deleted file mode 100644
index fdc27caf01d0..000000000000
--- a/drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Support for Intel Camera Imaging ISP subsystem.
- * Copyright (c) 2015, Intel Corporation.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- */
-
-#ifndef __IA_CSS_FIXEDBDS_HOST_H
-#define __IA_CSS_FIXEDBDS_HOST_H
-
-#include "ia_css_binary.h"
-#include "ia_css_fixedbds_param.h"
-
-void
-ia_css_bds_encode(
- struct sh_css_isp_bds_params *to,
- const struct ia_css_aa_config *from,
- unsigned size);
-
-void
-ia_css_bds_dump(
- const struct sh_css_isp_bds_params *bds,
- unsigned level);
-
-void
-ia_css_bds_debug_dtrace(
- const struct ia_css_aa_config *config,
- unsigned level);
-
-#endif /* __IA_CSS_FIXEDBDS_HOST_H */