brintos

brintos / linux-shallow public Read only

0
0
Text · 611 B · 93cd27a Raw
28 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * isphist.h4 *5 * TI OMAP3 ISP - Histogram module6 *7 * Copyright (C) 2010 Nokia Corporation8 * Copyright (C) 2009 Texas Instruments, Inc.9 *10 * Contacts: David Cohen <dacohen@gmail.com>11 *	     Laurent Pinchart <laurent.pinchart@ideasonboard.com>12 *	     Sakari Ailus <sakari.ailus@iki.fi>13 */14 15#ifndef OMAP3_ISP_HIST_H16#define OMAP3_ISP_HIST_H17 18#include <linux/omap3isp.h>19 20#define ISPHIST_IN_BIT_WIDTH_CCDC	1021 22struct isp_device;23 24int omap3isp_hist_init(struct isp_device *isp);25void omap3isp_hist_cleanup(struct isp_device *isp);26 27#endif /* OMAP3_ISP_HIST */28