Commit 92f2de28 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Thierry Reding
Browse files

pwm: crc: Consistently name pwm_chip variables "chip"



Most variables holding a pointer to a pwm_chip are called "chip" which
is also the usual name in most other PWM drivers. Rename the single
variable that have a different name to be called "chip", too, for
consistency.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarThierry Reding <thierry.reding@gmail.com>
parent 51352c09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,9 +34,9 @@ struct crystalcove_pwm {
	struct regmap *regmap;
};

static inline struct crystalcove_pwm *to_crc_pwm(struct pwm_chip *pc)
static inline struct crystalcove_pwm *to_crc_pwm(struct pwm_chip *chip)
{
	return container_of(pc, struct crystalcove_pwm, chip);
	return container_of(chip, struct crystalcove_pwm, chip);
}

static int crc_pwm_calc_clk_div(int period_ns)