Displaying 1 result from an estimated 1 matches for "e0deaff470900a4".
2020 Aug 05
1
[vhost:vhost 32/52] include/linux/typecheck.h:12:18: warning: comparison of distinct pointer types lacks a cast
...f(virtio_le_to_cpu(virtio_cread_v)), *(ptr)); \
| ^~~~~~~~~
drivers/virtio/virtio_input.c:253:3: note: in expansion of macro 'virtio_cread_le'
253 | virtio_cread_le(vi->vdev, struct virtio_input_config,
| ^~~~~~~~~~~~~~~
vim +12 include/linux/typecheck.h
e0deaff470900a4 Andrew Morton 2008-07-25 4
e0deaff470900a4 Andrew Morton 2008-07-25 5 /*
e0deaff470900a4 Andrew Morton 2008-07-25 6 * Check at compile time that something is of a particular type.
e0deaff470900a4 Andrew Morton 2008-07-25 7 * Always evaluates to 1 so you may use it easily in compariso...