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

Documentation/sparse: drop __bitwise__

We dropped __CHECK_ENDIAN__ so __bitwise__ is now an implementation
detail. People should use __bitwise everywhere.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

-7
-7
Documentation/dev-tools/sparse.rst
··· 51 51 vs cpu-endian vs whatever), and there the constant "0" really _is_ 52 52 special. 53 53 54 - __bitwise__ - to be used for relatively compact stuff (gfp_t, etc.) that 55 - is mostly warning-free and is supposed to stay that way. Warnings will 56 - be generated without __CHECK_ENDIAN__. 57 - 58 - __bitwise - noisy stuff; in particular, __le*/__be* are that. We really 59 - don't want to drown in noise unless we'd explicitly asked for it. 60 - 61 54 Using sparse for lock checking 62 55 ------------------------------ 63 56