staging: pi433: fix CamelCase for lnaGain enum

Fixes checkpatch warning:

  CHECK: Avoid CamelCase: <lnaGain>

Signed-off-by: Valentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Valentin Vidic 2018-03-14 21:44:06 +01:00 committed by Greg Kroah-Hartman
parent 9d985d127a
commit e4928ac29b
5 changed files with 6 additions and 6 deletions

View File

@ -196,7 +196,7 @@ rf params:
sets the electrical adoption of the antenna sets the electrical adoption of the antenna
fifty_ohm - for antennas with an impedance of 50Ohm fifty_ohm - for antennas with an impedance of 50Ohm
two_hundred_ohm - for antennas with an impedance of 200Ohm two_hundred_ohm - for antennas with an impedance of 200Ohm
lnaGain lna_gain
sets the gain of the low noise amp sets the gain of the low noise amp
automatic - lna gain is determined by an agc automatic - lna gain is determined by an agc
max - lna gain is set to maximum max - lna gain is set to maximum

View File

@ -117,7 +117,7 @@ struct pi433_rx_cfg {
__u8 rssi_threshold; __u8 rssi_threshold;
enum threshold_decrement threshold_decrement; enum threshold_decrement threshold_decrement;
enum antenna_impedance antenna_impedance; enum antenna_impedance antenna_impedance;
enum lnaGain lna_gain; enum lna_gain lna_gain;
enum mantisse bw_mantisse; /* normal: 0x50 */ enum mantisse bw_mantisse; /* normal: 0x50 */
__u8 bw_exponent; /* during AFC: 0x8b */ __u8 bw_exponent; /* during AFC: 0x8b */
enum dagc dagc; enum dagc dagc;

View File

@ -399,9 +399,9 @@ int rf69_set_antenna_impedance(struct spi_device *spi, enum antenna_impedance an
} }
} }
int rf69_set_lna_gain(struct spi_device *spi, enum lnaGain lnaGain) int rf69_set_lna_gain(struct spi_device *spi, enum lna_gain lna_gain)
{ {
switch (lnaGain) { switch (lna_gain) {
case automatic: case automatic:
return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_AUTO); return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_AUTO);
case max: case max:

View File

@ -37,7 +37,7 @@ int rf69_disable_amplifier(struct spi_device *spi, u8 amplifier_mask);
int rf69_set_output_power_level(struct spi_device *spi, u8 power_level); int rf69_set_output_power_level(struct spi_device *spi, u8 power_level);
int rf69_set_pa_ramp(struct spi_device *spi, enum pa_ramp pa_ramp); int rf69_set_pa_ramp(struct spi_device *spi, enum pa_ramp pa_ramp);
int rf69_set_antenna_impedance(struct spi_device *spi, enum antenna_impedance antenna_impedance); int rf69_set_antenna_impedance(struct spi_device *spi, enum antenna_impedance antenna_impedance);
int rf69_set_lna_gain(struct spi_device *spi, enum lnaGain lnaGain); int rf69_set_lna_gain(struct spi_device *spi, enum lna_gain lna_gain);
int rf69_set_bandwidth(struct spi_device *spi, enum mantisse mantisse, u8 exponent); int rf69_set_bandwidth(struct spi_device *spi, enum mantisse mantisse, u8 exponent);
int rf69_set_bandwidth_during_afc(struct spi_device *spi, enum mantisse mantisse, u8 exponent); int rf69_set_bandwidth_during_afc(struct spi_device *spi, enum mantisse mantisse, u8 exponent);
int rf69_set_ook_threshold_dec(struct spi_device *spi, enum threshold_decrement threshold_decrement); int rf69_set_ook_threshold_dec(struct spi_device *spi, enum threshold_decrement threshold_decrement);

View File

@ -65,7 +65,7 @@ enum antenna_impedance {
two_hundred_ohm two_hundred_ohm
}; };
enum lnaGain { enum lna_gain {
automatic, automatic,
max, max,
max_minus_6, max_minus_6,