drm/amd/display: Tidy up dce120_clock_source_create()
Also change sizeof to be automatic based on type declaration. Signed-off-by: Tom St Denis <tom.stdenis@amd.com> Reviewed-by: Harry Wentland <Harry.Wentland@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
cedaf3073a
commit
76fd8eb8e2
|
@ -398,13 +398,13 @@ struct clock_source *dce120_clock_source_create(
|
|||
bool dp_clk_src)
|
||||
{
|
||||
struct dce110_clk_src *clk_src =
|
||||
dm_alloc(sizeof(struct dce110_clk_src));
|
||||
dm_alloc(sizeof(*clk_src));
|
||||
|
||||
if (!clk_src)
|
||||
return NULL;
|
||||
|
||||
if (dce110_clk_src_construct(clk_src, ctx, bios, id,
|
||||
regs, &cs_shift, &cs_mask)) {
|
||||
regs, &cs_shift, &cs_mask)) {
|
||||
clk_src->base.dp_clk_src = dp_clk_src;
|
||||
return &clk_src->base;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue