repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
18 lines
413 B
C
18 lines
413 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
gpio functions.
|
|
Copyright (C) 2004 Chris Kennedy <c@groovy.org>
|
|
Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl>
|
|
|
|
*/
|
|
|
|
#ifndef IVTV_GPIO_H
|
|
#define IVTV_GPIO_H
|
|
|
|
/* GPIO stuff */
|
|
int ivtv_gpio_init(struct ivtv *itv);
|
|
void ivtv_reset_ir_gpio(struct ivtv *itv);
|
|
int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value);
|
|
|
|
#endif
|