From d0dd9837ad2f1eb75f85b125a39367956f74217f Mon Sep 17 00:00:00 2001 From: rtlsdrblog Date: Wed, 23 Aug 2023 15:44:28 +1200 Subject: [PATCH] align with osmocom changes --- include/rtlsdr_i2c.h | 1 + include/tuner_r82xx.h | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/rtlsdr_i2c.h b/include/rtlsdr_i2c.h index 7676689..5d144c2 100644 --- a/include/rtlsdr_i2c.h +++ b/include/rtlsdr_i2c.h @@ -1,6 +1,7 @@ #ifndef __I2C_H #define __I2C_H +int rtlsdr_check_dongle_model(void *dev, char* manufact_check, char* product_check); uint32_t rtlsdr_get_tuner_clock(void *dev); int rtlsdr_i2c_write_fn(void *dev, uint8_t addr, uint8_t *buf, int len); int rtlsdr_i2c_read_fn(void *dev, uint8_t addr, uint8_t *buf, int len); diff --git a/include/tuner_r82xx.h b/include/tuner_r82xx.h index 8bbf605..da58cf3 100644 --- a/include/tuner_r82xx.h +++ b/include/tuner_r82xx.h @@ -120,6 +120,4 @@ int r82xx_set_freq(struct r82xx_priv *priv, uint32_t freq); int r82xx_set_gain(struct r82xx_priv *priv, int set_manual_gain, int gain); int r82xx_set_bandwidth(struct r82xx_priv *priv, int bandwidth, uint32_t rate); -int rtlsdr_check_dongle_model(void *dev, char* manufact_check, char* product_check); - #endif