mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 22:50:41 +00:00
drivers: net: xen-netfront: Simplify the calculation of variables
Fix the following coccicheck warnings: ./drivers/net/xen-netfront.c:1816:52-54: WARNING !A || A && B is equivalent to !A || B. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Reviewed-by: Juergen Gross <jgross@suse.com> Link: https://lore.kernel.org/r/1612261069-13315-1-git-send-email-jiapeng.chong@linux.alibaba.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
493007c1fa
commit
e93fac3b51
@ -1811,7 +1811,7 @@ static int setup_netfront(struct xenbus_device *dev,
|
||||
* a) feature-split-event-channels == 0
|
||||
* b) feature-split-event-channels == 1 but failed to setup
|
||||
*/
|
||||
if (!feature_split_evtchn || (feature_split_evtchn && err))
|
||||
if (!feature_split_evtchn || err)
|
||||
err = setup_netfront_single(queue);
|
||||
|
||||
if (err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user