commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
27 lines
452 B
C
27 lines
452 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Allegro A8293 SEC driver
|
|
*
|
|
* Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
|
|
*/
|
|
|
|
#ifndef A8293_H
|
|
#define A8293_H
|
|
|
|
#include <media/dvb_frontend.h>
|
|
|
|
/*
|
|
* I2C address
|
|
* 0x08, 0x09, 0x0a, 0x0b
|
|
*/
|
|
|
|
/**
|
|
* struct a8293_platform_data - Platform data for the a8293 driver
|
|
* @dvb_frontend: DVB frontend.
|
|
*/
|
|
struct a8293_platform_data {
|
|
struct dvb_frontend *dvb_frontend;
|
|
};
|
|
|
|
#endif /* A8293_H */
|