mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
drm: omapdrm: Use unsigned int type
The kernel favours 'unsigned int' over plain 'unsigned'. Replace all occurences of the latter by the former. This avoid lots of checkpatch complaints in patches that touch lines where a plain 'unsigned' is used. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
committed by
Tomi Valkeinen
parent
dfe9cfccb2
commit
d11e5c827a
@@ -105,7 +105,7 @@ struct dss_pll *dss_pll_find_by_src(enum dss_clk_source src)
|
||||
}
|
||||
}
|
||||
|
||||
unsigned dss_pll_get_clkout_idx_for_src(enum dss_clk_source src)
|
||||
unsigned int dss_pll_get_clkout_idx_for_src(enum dss_clk_source src)
|
||||
{
|
||||
switch (src) {
|
||||
case DSS_CLK_SRC_HDMI_PLL:
|
||||
@@ -277,7 +277,7 @@ bool dss_pll_calc_b(const struct dss_pll *pll, unsigned long clkin,
|
||||
unsigned long fint, clkdco, clkout;
|
||||
unsigned long target_clkdco;
|
||||
unsigned long min_dco;
|
||||
unsigned n, m, mf, m2, sd;
|
||||
unsigned int n, m, mf, m2, sd;
|
||||
const struct dss_pll_hw *hw = pll->hw;
|
||||
|
||||
DSSDBG("clkin %lu, target clkout %lu\n", clkin, target_clkout);
|
||||
|
||||
Reference in New Issue
Block a user