Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4928ac2 authored by Valentin Vidic's avatar Valentin Vidic Committed by Greg Kroah-Hartman
Browse files

staging: pi433: fix CamelCase for lnaGain enum



Fixes checkpatch warning:

  CHECK: Avoid CamelCase: <lnaGain>

Signed-off-by: default avatarValentin Vidic <Valentin.Vidic@CARNet.hr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9d985d12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ rf params:
		sets the electrical adoption of the antenna
		fifty_ohm	- for antennas with an impedance of 50Ohm
		two_hundred_ohm	- for antennas with an impedance of 200Ohm
	lnaGain
	lna_gain
		sets the gain of the low noise amp
		automatic	- lna gain is determined by an agc
		max		- lna gain is set to maximum
+1 −1
Original line number Diff line number Diff line
@@ -117,7 +117,7 @@ struct pi433_rx_cfg {
	__u8			rssi_threshold;
	enum threshold_decrement threshold_decrement;
	enum antenna_impedance	antenna_impedance;
	enum lnaGain		lna_gain;
	enum lna_gain		lna_gain;
	enum mantisse		bw_mantisse;	/* normal: 0x50 */
	__u8			bw_exponent;	/* during AFC: 0x8b */
	enum dagc		dagc;
+2 −2
Original line number Diff line number Diff line
@@ -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:
		return rf69_read_mod_write(spi, REG_LNA, MASK_LNA_GAIN, LNA_GAIN_AUTO);
	case max:
+1 −1
Original line number Diff line number Diff line
@@ -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_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_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_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);
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ enum antenna_impedance {
	two_hundred_ohm
};

enum lnaGain {
enum lna_gain {
	automatic,
	max,
	max_minus_6,