clk: at91: replace conditional operator with double logical not
Replace conditional operator with double logical not as code may be simpler to read. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/1595403506-8209-10-git-send-email-claudiu.beznea@microchip.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
e1e3e7008a
commit
42324d953b
|
@ -83,7 +83,7 @@ static int clk_generated_is_enabled(struct clk_hw *hw)
|
|||
regmap_read(gck->regmap, gck->layout->offset, &status);
|
||||
spin_unlock_irqrestore(gck->lock, flags);
|
||||
|
||||
return status & AT91_PMC_PCR_GCKEN ? 1 : 0;
|
||||
return !!(status & AT91_PMC_PCR_GCKEN);
|
||||
}
|
||||
|
||||
static unsigned long
|
||||
|
|
|
@ -175,7 +175,7 @@ static bool clk_main_rc_osc_ready(struct regmap *regmap)
|
|||
|
||||
regmap_read(regmap, AT91_PMC_SR, &status);
|
||||
|
||||
return status & AT91_PMC_MOSCRCS;
|
||||
return !!(status & AT91_PMC_MOSCRCS);
|
||||
}
|
||||
|
||||
static int clk_main_rc_osc_prepare(struct clk_hw *hw)
|
||||
|
@ -336,7 +336,7 @@ static int clk_rm9200_main_is_prepared(struct clk_hw *hw)
|
|||
|
||||
regmap_read(clkmain->regmap, AT91_CKGR_MCFR, &status);
|
||||
|
||||
return status & AT91_PMC_MAINRDY ? 1 : 0;
|
||||
return !!(status & AT91_PMC_MAINRDY);
|
||||
}
|
||||
|
||||
static unsigned long clk_rm9200_main_recalc_rate(struct clk_hw *hw,
|
||||
|
@ -398,7 +398,7 @@ static inline bool clk_sam9x5_main_ready(struct regmap *regmap)
|
|||
|
||||
regmap_read(regmap, AT91_PMC_SR, &status);
|
||||
|
||||
return status & AT91_PMC_MOSCSELS ? 1 : 0;
|
||||
return !!(status & AT91_PMC_MOSCSELS);
|
||||
}
|
||||
|
||||
static int clk_sam9x5_main_prepare(struct clk_hw *hw)
|
||||
|
|
|
@ -33,7 +33,7 @@ static inline bool clk_master_ready(struct regmap *regmap)
|
|||
|
||||
regmap_read(regmap, AT91_PMC_SR, &status);
|
||||
|
||||
return status & AT91_PMC_MCKRDY ? 1 : 0;
|
||||
return !!(status & AT91_PMC_MCKRDY);
|
||||
}
|
||||
|
||||
static int clk_master_prepare(struct clk_hw *hw)
|
||||
|
|
|
@ -208,7 +208,7 @@ static int clk_sam9x5_peripheral_is_enabled(struct clk_hw *hw)
|
|||
regmap_read(periph->regmap, periph->layout->offset, &status);
|
||||
spin_unlock_irqrestore(periph->lock, flags);
|
||||
|
||||
return status & AT91_PMC_PCR_EN ? 1 : 0;
|
||||
return !!(status & AT91_PMC_PCR_EN);
|
||||
}
|
||||
|
||||
static unsigned long
|
||||
|
|
|
@ -34,7 +34,7 @@ static inline bool clk_system_ready(struct regmap *regmap, int id)
|
|||
|
||||
regmap_read(regmap, AT91_PMC_SR, &status);
|
||||
|
||||
return status & (1 << id) ? 1 : 0;
|
||||
return !!(status & (1 << id));
|
||||
}
|
||||
|
||||
static int clk_system_prepare(struct clk_hw *hw)
|
||||
|
@ -74,7 +74,7 @@ static int clk_system_is_prepared(struct clk_hw *hw)
|
|||
|
||||
regmap_read(sys->regmap, AT91_PMC_SR, &status);
|
||||
|
||||
return status & (1 << sys->id) ? 1 : 0;
|
||||
return !!(status & (1 << sys->id));
|
||||
}
|
||||
|
||||
static const struct clk_ops system_ops = {
|
||||
|
|
Loading…
Reference in New Issue