From: Oliver Neukum Date: Sun, 19 Dec 2010 20:54:48 +0000 (+0100) Subject: USB: add helper to convert USB error codes X-Git-Tag: v2.6.39-rc1~472^2~172 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60678b60d78cd268a3aed3044dfbbb85760b2c54;p=profile%2Fivi%2Fkernel-x86-ivi.git USB: add helper to convert USB error codes This converts error codes specific to USB to generic error codes that can be returned to user space. Tests showed that it is so small that it is better inlined. Signed-off-by: Oliver Neukum Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/core/usb.h b/drivers/usb/core/usb.h index b975450..a9cf484 100644 --- a/drivers/usb/core/usb.h +++ b/drivers/usb/core/usb.h @@ -122,6 +122,19 @@ static inline int is_usb_device_driver(struct device_driver *drv) for_devices; } +/* translate USB error codes to codes user space understands */ +static inline int usb_translate_errors(int error_code) +{ + switch (error_code) { + case 0: + case -ENOMEM: + case -ENODEV: + return error_code; + default: + return -EIO; + } +} + /* for labeling diagnostics */ extern const char *usbcore_name;