mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-25 23:26:03 +08:00
atomisp: remove satm kernel
This isn't used so it can go in the bitbucket. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d6f2b57159
commit
184f8e0981
@ -80,7 +80,6 @@ atomisp-objs += \
|
||||
css2400/isp/kernels/sdis/sdis_2/ia_css_sdis2.host.o \
|
||||
css2400/isp/kernels/cnr/cnr_2/ia_css_cnr2.host.o \
|
||||
css2400/isp/kernels/cnr/cnr_1.0/ia_css_cnr.host.o \
|
||||
css2400/isp/kernels/satm/ia_css_satm.host.o \
|
||||
css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr.host.o \
|
||||
css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr_table.host.o \
|
||||
css2400/isp/kernels/xnr/xnr3_0_5/ia_css_xnr3_0_5.host.o \
|
||||
|
@ -1,27 +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_satm.host.h"
|
||||
|
||||
|
||||
void
|
||||
ia_css_satm_init_config(
|
||||
struct sh_css_isp_satm_params *to,
|
||||
const struct ia_css_satm_config *from,
|
||||
unsigned size)
|
||||
{
|
||||
(void) size;
|
||||
|
||||
to->params.test_satm = from->params.test_satm;
|
||||
}
|
@ -1,29 +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_SATM_HOST_H
|
||||
#define __IA_CSS_SATM_HOST_H
|
||||
|
||||
#include "ia_css_satm_param.h"
|
||||
#include "ia_css_satm_types.h"
|
||||
|
||||
extern const struct ia_css_satm_config default_satm_config;
|
||||
|
||||
void
|
||||
ia_css_satm_init_config(
|
||||
struct sh_css_isp_satm_params *to,
|
||||
const struct ia_css_satm_config *from,
|
||||
unsigned size);
|
||||
|
||||
#endif /* __IA_CSS_SATM_HOST_H */
|
@ -1,30 +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_SATM_PARAMS_H
|
||||
#define __IA_CSS_SATM_PARAMS_H
|
||||
|
||||
#include "type_support.h"
|
||||
|
||||
/* SATM parameters on ISP. */
|
||||
struct sh_css_satm_params {
|
||||
int32_t test_satm;
|
||||
};
|
||||
|
||||
/* SATM ISP parameters */
|
||||
struct sh_css_isp_satm_params {
|
||||
struct sh_css_satm_params params;
|
||||
};
|
||||
|
||||
#endif /* __IA_CSS_SATM_PARAMS_H */
|
@ -1,35 +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_SATM_TYPES_H
|
||||
#define __IA_CSS_SATM_TYPES_H
|
||||
|
||||
/**
|
||||
* \brief SATM Parameters
|
||||
* \detail Currently SATM paramters are used only for testing purposes
|
||||
*/
|
||||
struct ia_css_satm_params {
|
||||
int test_satm; /**< Test parameter */
|
||||
};
|
||||
|
||||
/**
|
||||
* \brief SATM public paramterers.
|
||||
* \details Struct with all paramters for SATM that can be seet from
|
||||
* the CSS API. Currenly, only test paramters are defined.
|
||||
*/
|
||||
struct ia_css_satm_config {
|
||||
struct ia_css_satm_params params; /**< SATM paramaters */
|
||||
};
|
||||
|
||||
#endif /* __IA_CSS_SATM_TYPES_H */
|
Loading…
Reference in New Issue
Block a user