Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

gpu: host1x: Remove redundant parentheses

There's no need to wrap the BIT() macro into an extra set of parentheses
because it's already implemented to use its own set.

Signed-off-by: Thierry Reding <treding@nvidia.com>

+1 -1
+1 -1
drivers/gpu/host1x/hw/cdma_hw.c
··· 220 220 ch->id, getptr); 221 221 222 222 cmdproc_stop = host1x_sync_readl(host1x, HOST1X_SYNC_CMDPROC_STOP); 223 - cmdproc_stop &= ~(BIT(ch->id)); 223 + cmdproc_stop &= ~BIT(ch->id); 224 224 host1x_sync_writel(host1x, cmdproc_stop, HOST1X_SYNC_CMDPROC_STOP); 225 225 226 226 cdma->torndown = false;