mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
f20596943a
Fix the following kernel-doc warnings: drivers/media/tuners/it913x.h:28: warning: Function parameter or member 'fe' not described in 'it913x_platform_data' drivers/media/tuners/tda827x.h:34: warning: wrong kernel-doc identifier on line: * Attach a tda827x tuner to the supplied frontend structure. drivers/media/tuners/qt1010.h:20: warning: wrong kernel-doc identifier on line: * Attach a qt1010 tuner to the supplied frontend structure. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
31 lines
703 B
C
31 lines
703 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* ITE Tech IT9137 silicon tuner driver
|
|
*
|
|
* Copyright (C) 2011 Malcolm Priestley (tvboxspy@gmail.com)
|
|
* IT9137 Copyright (C) ITE Tech Inc.
|
|
*/
|
|
|
|
#ifndef IT913X_H
|
|
#define IT913X_H
|
|
|
|
#include <media/dvb_frontend.h>
|
|
|
|
/**
|
|
* struct it913x_platform_data - Platform data for the it913x driver
|
|
* @regmap: af9033 demod driver regmap.
|
|
* @fe: af9033 demod driver DVB frontend.
|
|
* @role: Chip role, single or dual configuration.
|
|
*/
|
|
|
|
struct it913x_platform_data {
|
|
struct regmap *regmap;
|
|
struct dvb_frontend *fe;
|
|
#define IT913X_ROLE_SINGLE 0
|
|
#define IT913X_ROLE_DUAL_MASTER 1
|
|
#define IT913X_ROLE_DUAL_SLAVE 2
|
|
unsigned int role:2;
|
|
};
|
|
|
|
#endif
|