Re: [Outreachy kernel] [RFC PATCH] staging: unisys: visorhba: Convert module from IDR to XArray

From: Julia Lawall
Date: Mon Apr 26 2021 - 06:07:27 EST


> @@ -273,8 +260,7 @@ static int forward_taskmgmt_command(enum task_mgmt_types tasktype,
> if (devdata->serverdown || devdata->serverchangingstate)
> return FAILED;
>
> - scsicmd_id = add_scsipending_entry(devdata, CMD_SCSITASKMGMT_TYPE,
> - NULL);
> + scsicmd_id = add_scsipending_entry(devdata, CMD_SCSITASKMGMT_TYPE, NULL);
> if (scsicmd_id < 0)
> return FAILED;
>

As far as I can see, this is just a whitespace change, so it shouldn't be
in with the rest. If you make whitspace changes, they should be in with
the other code that you are changing.

julia