ChangeSet 1.1254.1.75, 2003/06/01 22:59:08-07:00, mdharm-usb@one-eyed-alien.net [PATCH] USB: usb-storage: fix typo Typo fix. We need bitwise-OR here. drivers/usb/storage/usb.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -Nru a/drivers/usb/storage/usb.h b/drivers/usb/storage/usb.h --- a/drivers/usb/storage/usb.h Mon Jun 2 11:20:26 2003 +++ b/drivers/usb/storage/usb.h Mon Jun 2 11:20:26 2003 @@ -82,7 +82,7 @@ #define US_FLIDX_SG_ACTIVE 19 /* 0x00080000 current_sg is in use */ #define US_FLIDX_ABORTING 20 /* 0x00100000 abort is in progress */ #define US_FLIDX_DISCONNECTING 21 /* 0x00200000 disconnect in progress */ -#define DONT_SUBMIT ((1UL << US_FLIDX_ABORTING) || \ +#define DONT_SUBMIT ((1UL << US_FLIDX_ABORTING) | \ (1UL << US_FLIDX_DISCONNECTING))