lkml.org 
[lkml]   [2020]   [Jun]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 1/2] sched/uclamp: Fix initialization of strut uclamp_rq
On Thu, Jun 18, 2020 at 08:55:24PM +0100, Qais Yousef wrote:

> + for_each_clamp_id(clamp_id) {
> + memset(uc_rq[clamp_id].bucket,
> + 0,
> + sizeof(struct uclamp_bucket)*UCLAMP_BUCKETS);
> +
> + uc_rq[clamp_id].value = uclamp_none(clamp_id);

I think you can replace all that with:

*uc_rq = (struct uclamp_rq){
.value = uclamp_none(clamp_id),
};

it's shorter and is free or weird line-breaks :-)

> + }

\
 
 \ /
  Last update: 2020-06-19 19:32    [W:0.124 / U:2.020 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site