diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2011-11-04 11:50:03 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2011-11-04 22:11:05 +0100 |
commit | 2e768e7f171514924c3b206b7f3fbe6bf20c1c71 (patch) | |
tree | ffd804b1a8dfccfbe08451b3dd0e16ed0502bc94 /payloads/libpayload/include | |
parent | 3cd0ae2c7b21174188ff1df1f98d3d5295cb7684 (diff) |
libpayload: Drop usb_fatal()
We have fatal(), which is just as good.
Coccinelle script:
@@
expression E;
@@
-usb_fatal(E)
+fatal(E)
Change-Id: Iabecbcc7d068cc0f82687bf51d89c2626642cd86
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/395
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'payloads/libpayload/include')
-rw-r--r-- | payloads/libpayload/include/usb/usb.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/payloads/libpayload/include/usb/usb.h b/payloads/libpayload/include/usb/usb.h index 2cd9c55895..e38aa78bd1 100644 --- a/payloads/libpayload/include/usb/usb.h +++ b/payloads/libpayload/include/usb/usb.h @@ -257,5 +257,4 @@ int usb_interface_check(u16 vendor, u16 device); # define debug(fmt, ...) while (0) { printf(fmt, ##__VA_ARGS__); } #endif -void usb_fatal(const char *message) __attribute__ ((noreturn)); #endif |