diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-28 20:32:50 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-24 01:32:36 +0200 |
commit | f55876dec74edb4d4b3eeaaf1278c2835a4c20f0 (patch) | |
tree | 53932e239c40f99b918befae318cea309dba9d17 /drivers/usb/atm/usbatm.h | |
parent | USB: ti_usb_3410_5052: remove vendor/product module parameters (diff) | |
download | linux-f55876dec74edb4d4b3eeaaf1278c2835a4c20f0.tar.xz linux-f55876dec74edb4d4b3eeaaf1278c2835a4c20f0.zip |
USB: usbatm: remove unused UDSL_ASSERT macro
If this code isn't triggering this assert by now, it never will, so just
remove it, it's pointless.
Cc: Duncan Sands <duncan.sands@free.fr>
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/atm/usbatm.h')
-rw-r--r-- | drivers/usb/atm/usbatm.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/usb/atm/usbatm.h b/drivers/usb/atm/usbatm.h index 5fc489405217..a2955b117e88 100644 --- a/drivers/usb/atm/usbatm.h +++ b/drivers/usb/atm/usbatm.h @@ -39,18 +39,6 @@ #define VERBOSE_DEBUG */ -#ifdef DEBUG -#define UDSL_ASSERT(instance, x) BUG_ON(!(x)) -#else -#define UDSL_ASSERT(instance, x) \ - do { \ - if (!(x)) \ - dev_warn(&(instance)->usb_intf->dev, \ - "failed assertion '%s' at line %d", \ - __stringify(x), __LINE__); \ - } while (0) -#endif - #define usb_err(instance, format, arg...) \ dev_err(&(instance)->usb_intf->dev , format , ## arg) #define usb_info(instance, format, arg...) \ |