Commit 184f8e09 authored by Alan Cox's avatar Alan Cox Committed by Greg Kroah-Hartman

atomisp: remove satm kernel

This isn't used so it can go in the bitbucket.
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d6f2b571
......@@ -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 \
......
/*
* 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;
}
/*
* 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 */
/*
* 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 */
/*
* 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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment