mirror of https://gitee.com/openkylin/linux.git
staging: most: remove multiple assignment
This patch removes multiple assignments as specified in coding style. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a64557bae3
commit
c6c3f3458f
|
@ -663,7 +663,8 @@ u8 DIM_Startup(void *dim_base_address, u32 mlb_clock)
|
|||
return DIM_INIT_ERR_MLB_CLOCK;
|
||||
|
||||
g.dim2 = dim_base_address;
|
||||
g.dbr_map[0] = g.dbr_map[1] = 0;
|
||||
g.dbr_map[0] = 0;
|
||||
g.dbr_map[1] = 0;
|
||||
|
||||
dim2_initialize(mlb_clock >= 3, mlb_clock);
|
||||
|
||||
|
|
Loading…
Reference in New Issue