staging: pi433: Rename variable in struct pi433_rx_cfg
authorSimon Sandström <simon@nikanor.nu>
Tue, 5 Dec 2017 22:08:41 +0000 (23:08 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 Dec 2017 15:02:13 +0000 (16:02 +0100)
Renames variable thresholdDecrement in struct pi433_rx_cfg to
threshold_decrement to get rid of checkpatch.pl warning
"Avoid CamelCase: <thresholdDecrement>".

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/pi433/pi433_if.c
drivers/staging/pi433/pi433_if.h

index 840a7c7bf19a9b1d82cadee7aeecefca7caea8ff..b8efe6a74a2afe63823270db5397ef69ab6422f1 100644 (file)
@@ -188,7 +188,7 @@ rf69_set_rx_cfg(struct pi433_device *dev, struct pi433_rx_cfg *rx_cfg)
        SET_CHECKED(rf69_set_modulation (dev->spi, rx_cfg->modulation));
        SET_CHECKED(rf69_set_antenna_impedance   (dev->spi, rx_cfg->antenna_impedance));
        SET_CHECKED(rf69_set_rssi_threshold      (dev->spi, rx_cfg->rssi_threshold));
-       SET_CHECKED(rf69_set_ook_threshold_dec   (dev->spi, rx_cfg->thresholdDecrement));
+       SET_CHECKED(rf69_set_ook_threshold_dec   (dev->spi, rx_cfg->threshold_decrement));
        SET_CHECKED(rf69_set_bandwidth           (dev->spi, rx_cfg->bw_mantisse, rx_cfg->bw_exponent));
        SET_CHECKED(rf69_set_bandwidth_during_afc(dev->spi, rx_cfg->bw_mantisse, rx_cfg->bw_exponent));
        SET_CHECKED(rf69_set_dagc                (dev->spi, rx_cfg->dagc));
index fc842c48c33ec2d82062bc820b74a700f71c8ea3..6b31c1584b3af7cd63878b87b00abdc13478936b 100644 (file)
@@ -115,7 +115,7 @@ struct pi433_rx_cfg {
        enum modulation         modulation;
 
        __u8                    rssi_threshold;
-       enum thresholdDecrement thresholdDecrement;
+       enum thresholdDecrement threshold_decrement;
        enum antennaImpedance   antenna_impedance;
        enum lnaGain            lna_gain;
        enum mantisse           bw_mantisse;    /* normal: 0x50 */