CVSROOT: /cvs Module name: src Changes by: s...@cvs.openbsd.org 2016/09/02 09:45:41
Modified files: sys/dev/pci : if_iwm.c Log message: The iwm_poll_bit() function in iwm(4) returns 1 on success, and 0 on failure. So instead of "if (ret < 0) {" we should check for "if (!ret) {". Patch by Imre Vadasz