[IrDA]: Removed incorrect IRDA_ASSERT()

With USB2.0 bulk out MTU can be 512 bytes, so checking it only for 64
bytes is incorrect.

Signed-off-by: Samuel Ortiz <samuel@sortiz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Samuel Ortiz and committed by David S. Miller 8f1adb5f 3958fb34

-2
-2
drivers/net/irda/irda-usb.c
··· 1515 1515 1516 1516 IRDA_DEBUG(0, "%s(), And our endpoints are : in=%02X, out=%02X (%d), int=%02X\n", 1517 1517 __FUNCTION__, self->bulk_in_ep, self->bulk_out_ep, self->bulk_out_mtu, self->bulk_int_ep); 1518 - /* Should be 8, 16, 32 or 64 bytes */ 1519 - IRDA_ASSERT(self->bulk_out_mtu == 64, ;); 1520 1518 1521 1519 return((self->bulk_in_ep != 0) && (self->bulk_out_ep != 0)); 1522 1520 }