iprlib.c:4993:38: warning: logical 'or' of collectively exhaustive tests is always true [-Wlogical-op]
if (ipr_is_gscsi(dev) && (rc != 512 || rc != 4096))
Maybe
if (ipr_is_gscsi(dev) && (rc != 512 && rc != 4096))
This is now fixed upstream. Thanks.
Log in to post a comment.
This is now fixed upstream. Thanks.