summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/rf
diff options
context:
space:
mode:
authorHarald Welte2010-03-07 13:33:56 +0100
committerHarald Welte2010-03-07 13:33:56 +0100
commit753885defad2cab0d1501c761b5977166ef54cae (patch)
tree3c301747782015020a43300d90cf5d091572b0f1 /src/target/firmware/rf
parentfix stdint.h to remove bogus warnings of printf format strings (diff)
downloadosmocom-753885defad2cab0d1501c761b5977166ef54cae.tar.gz
osmocom-753885defad2cab0d1501c761b5977166ef54cae.tar.xz
osmocom-753885defad2cab0d1501c761b5977166ef54cae.zip
remove unused variables
Diffstat (limited to 'src/target/firmware/rf')
-rw-r--r--src/target/firmware/rf/trf6151.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/target/firmware/rf/trf6151.c b/src/target/firmware/rf/trf6151.c
index de80ba9..1db1c72 100644
--- a/src/target/firmware/rf/trf6151.c
+++ b/src/target/firmware/rf/trf6151.c
@@ -139,7 +139,6 @@ static uint16_t trf6151_pll_rx(uint32_t freq_khz)
uint32_t freq_100khz = freq_khz / SCALE_100KHZ; /* Scale from *1000 (k) to *100000 (0.1M) */
uint32_t fb_100khz; /* frequency of B alone, without A (units of 100kHz) */
uint32_t l;
- uint32_t b10; /* B value expanded by a factor of 10 */
uint32_t a, b; /* The PLL multipliers we want to compute */
/* L = 4 for low band, 2 for high band */
@@ -177,7 +176,6 @@ static uint16_t trf6151_pll_tx(uint32_t freq_khz)
uint32_t freq_100khz = freq_khz / SCALE_100KHZ; /* Scale from *1000 (k) to *100000 (0.1M) */
uint32_t fb_100khz; /* frequency of B alone, without A (units of 100kHz) */
uint32_t l, r, m;
- uint32_t b10; /* B value expanded by a factor of 10 */
uint32_t a, b; /* The PLL multipliers we want to compute */
/* L = 4 for low band, 2 for high band */