cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mxl692.h (555B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * Driver for the MaxLinear MxL69x family of tuners/demods
      4 *
      5 * Copyright (C) 2020 Brad Love <brad@nextdimension.cc>
      6 *
      7 * based on code:
      8 * Copyright (c) 2016 MaxLinear, Inc. All rights reserved
      9 * which was released under GPL V2
     10 */
     11
     12#ifndef _MXL692_H_
     13#define _MXL692_H_
     14
     15#include <media/dvb_frontend.h>
     16
     17#define MXL692_FIRMWARE "dvb-demod-mxl692.fw"
     18
     19struct mxl692_config {
     20	unsigned char  id;
     21	u8 i2c_addr;
     22	/*
     23	 * frontend
     24	 * returned by driver
     25	 */
     26	struct dvb_frontend **fe;
     27};
     28
     29#endif /* _MXL692_H_ */