linux/drivers/media/dvb-frontends/cxd2880/cxd2880_common.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*
   3 * cxd2880_common.h
   4 * Sony CXD2880 DVB-T2/T tuner + demodulator driver common definitions
   5 *
   6 * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation
   7 */
   8
   9#ifndef CXD2880_COMMON_H
  10#define CXD2880_COMMON_H
  11
  12#include <linux/types.h>
  13#include <linux/errno.h>
  14#include <linux/delay.h>
  15#include <linux/string.h>
  16
  17int cxd2880_convert2s_complement(u32 value, u32 bitlen);
  18
  19#endif
  20