zephyr/scripts/coccinelle/unsigned_shift.cocci

10 lines
119 B
Plaintext

// Copyright (c) 2017 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
@@
constant A;
@@
- 1 << A
+ BIT(A)