usb: remove warning in 'find_next_zero_bit_le'

in case no zero bit is found.
This commit is contained in:
Sebastian Sumpf 2017-11-13 15:24:26 +01:00 committed by Christian Helmuth
parent b8eae11356
commit 9d0518661b

View File

@ -453,8 +453,6 @@ long find_next_zero_bit_le(const void *addr,
if (!(*(unsigned long*)addr & (1L << offset)))
return offset;
Genode::warning("No zero bit findable");
return offset + size;
}