From 1cf6fbda4f61f3dc15272492d6219e6b4384ae6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Meri=C3=A7=20SARII=C5=9EIK?= Date: Wed, 19 May 2021 15:17:19 +0200 Subject: [PATCH] Removed unnecessary parameter --- bme68x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bme68x.c b/bme68x.c index f6d2ad6..7786362 100644 --- a/bme68x.c +++ b/bme68x.c @@ -958,7 +958,7 @@ static uint32_t calc_gas_resistance_low(uint16_t gas_res_adc, uint8_t gas_range, } /* This internal API is used to calculate the gas resistance */ -static uint32_t calc_gas_resistance_high(uint16_t gas_res_adc, uint8_t gas_range, const struct bme680_dev *dev) +static uint32_t calc_gas_resistance_high(uint16_t gas_res_adc, uint8_t gas_range) { uint32_t calc_gas_res; uint32_t var1 = UINT32_C(262144) >> gas_range;