[Intel-gfx] linux-4.2-rc1/drivers/gpu/drm/i915/intel_csr.c:353: bad if statement ?
David Binderman
dcb314 at hotmail.com
Tue Jul 7 03:51:11 PDT 2015
Hello there,
[linux-4.2-rc1/drivers/gpu/drm/i915/intel_csr.c:353]: (warning) Logical conjunction always evaluates to false: EXPR < 524288 && EXPR> 589823.
Source code is
if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE &&
dmc_header->mmioaddr[i]> CSR_MMIO_END_RANGE) {
Maybe better code
if (dmc_header->mmioaddr[i] < CSR_MMIO_START_RANGE ||
dmc_header->mmioaddr[i]> CSR_MMIO_END_RANGE) {
Regards
David Binderman
More information about the Intel-gfx
mailing list