diff options
author | Thierry Reding <treding@nvidia.com> | 2016-06-23 11:37:31 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2016-06-23 11:59:31 +0200 |
commit | 813a9d4ecdf0f6a3bcb5cf57ea4b9ebd69b31ee8 (patch) | |
tree | ba798ca3c6daf9381881e154f5a014a6f724312f /drivers/gpu/host1x | |
parent | 0b8070d12ee2ef62e0b07213d843eb508fba966e (diff) | |
download | linux-813a9d4ecdf0f6a3bcb5cf57ea4b9ebd69b31ee8.tar.bz2 |
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>
Diffstat (limited to 'drivers/gpu/host1x')
-rw-r--r-- | drivers/gpu/host1x/hw/cdma_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/host1x/hw/cdma_hw.c b/drivers/gpu/host1x/hw/cdma_hw.c index 5c39f1b111f7..659c1bbfeeba 100644 --- a/drivers/gpu/host1x/hw/cdma_hw.c +++ b/drivers/gpu/host1x/hw/cdma_hw.c @@ -220,7 +220,7 @@ static void cdma_resume(struct host1x_cdma *cdma, u32 getptr) ch->id, getptr); cmdproc_stop = host1x_sync_readl(host1x, HOST1X_SYNC_CMDPROC_STOP); - cmdproc_stop &= ~(BIT(ch->id)); + cmdproc_stop &= ~BIT(ch->id); host1x_sync_writel(host1x, cmdproc_stop, HOST1X_SYNC_CMDPROC_STOP); cdma->torndown = false; |