From: Thomas Jarosch Date: Wed, 9 Jun 2010 16:32:13 +0000 (+0200) Subject: More generic error message for the FTDI kernel driver X-Git-Tag: v0.18~10 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=925ac11e5322 More generic error message for the FTDI kernel driver --- diff --git a/src/ftdi.c b/src/ftdi.c index ac56d08..7d5e029 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -497,7 +497,7 @@ int ftdi_usb_open_dev(struct ftdi_context *ftdi, struct usb_device *dev) } else { - ftdi_error_return(-3, "unable to set usb configuration. Make sure ftdi_sio is unloaded!"); + ftdi_error_return(-3, "unable to set usb configuration. Make sure the default FTDI kernel side driver is unloaded."); } } } @@ -512,7 +512,7 @@ int ftdi_usb_open_dev(struct ftdi_context *ftdi, struct usb_device *dev) } else { - ftdi_error_return(-5, "unable to claim usb device. Make sure ftdi_sio is unloaded!"); + ftdi_error_return(-5, "unable to claim usb device. Make sure the default FTDI kernel side driver is unloaded."); } }