staging: pi433: fix CamelCase for maxMinus variables
authorValentin Vidic <Valentin.Vidic@CARNet.hr>
Fri, 22 Dec 2017 08:36:59 +0000 (09:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Jan 2018 15:32:23 +0000 (16:32 +0100)
Fixes checkpatch warnings:

  CHECK: Avoid CamelCase: <maxMinus12>
  CHECK: Avoid CamelCase: <maxMinus24>
  CHECK: Avoid CamelCase: <maxMinus36>
  CHECK: Avoid CamelCase: <maxMinus48>
  CHECK: Avoid CamelCase: <maxMinus6>

Signed-off-by: Valentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/pi433/Documentation/pi433.txt
drivers/staging/pi433/rf69.c
drivers/staging/pi433/rf69_enum.h

index c082878be0b1036c5bc489547aa540fea9e761e8..7d9dc2244848d6f3051c96f8f0bbb4d62363d06d 100644 (file)
@@ -200,11 +200,11 @@ rf params:
                sets the gain of the low noise amp
                automatic       - lna gain is determined by an agc
                max             - lna gain is set to maximum
-               maxMinus6       - lna gain is set to  6db below max
-               maxMinus12      - lna gain is set to 12db below max
-               maxMinus24      - lna gain is set to 24db below max
-               maxMinus36      - lna gain is set to 36db below max
-               maxMinus48      - lna gain is set to 48db below max
+               max_minus_6     - lna gain is set to  6db below max
+               max_minus_12    - lna gain is set to 12db below max
+               max_minus_24    - lna gain is set to 24db below max
+               max_minus_36    - lna gain is set to 36db below max
+               max_minus_48    - lna gain is set to 48db below max
        bw_mantisse
                sets the bandwidth of the channel filter - part one: mantisse.
                mantisse16      - mantisse is set to 16
index 9ad358c3022534a9ca53939f97b084b724089d78..c214b4a159f274287a3a28ce39d5c4fbe4460a6b 100644 (file)
@@ -367,13 +367,13 @@ int rf69_set_antenna_impedance(struct spi_device *spi, enum antennaImpedance ant
 int rf69_set_lna_gain(struct spi_device *spi, enum lnaGain lnaGain)
 {
        switch (lnaGain) {
-       case automatic:  return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_AUTO);
-       case max:        return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX);
-       case maxMinus6:  return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_6);
-       case maxMinus12: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_12);
-       case maxMinus24: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_24);
-       case maxMinus36: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_36);
-       case maxMinus48: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_48);
+       case automatic:    return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_AUTO);
+       case max:          return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX);
+       case max_minus_6:  return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_6);
+       case max_minus_12: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_12);
+       case max_minus_24: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_24);
+       case max_minus_36: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_36);
+       case max_minus_48: return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_MAX_MINUS_48);
        default:
                dev_dbg(&spi->dev, "set: illegal input param");
                return -EINVAL;
index 86f1d2f94ab24f648bf580a8caff978ae72b763c..77b97d173f87c27e8b4e274c8d7bd5e935a09f5d 100644 (file)
@@ -68,11 +68,11 @@ enum antennaImpedance {
 enum lnaGain {
        automatic,
        max,
-       maxMinus6,
-       maxMinus12,
-       maxMinus24,
-       maxMinus36,
-       maxMinus48,
+       max_minus_6,
+       max_minus_12,
+       max_minus_24,
+       max_minus_36,
+       max_minus_48,
        undefined
 };