mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
USB: remove unneeded printks from microtek driver
These printks can be removed as they only provide information about the driver not the device and nobody has ever provided feedback. Signed-off-by: Oliver Neukum <oliver@neukum.org>
This commit is contained in:
parent
8e8dce0650
commit
877accca79
1 changed files with 0 additions and 37 deletions
|
@ -653,33 +653,6 @@ static struct scsi_host_template mts_scsi_host_template = {
|
||||||
.max_sectors= 256, /* 128 K */
|
.max_sectors= 256, /* 128 K */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct vendor_product
|
|
||||||
{
|
|
||||||
char* name;
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
mts_sup_unknown=0,
|
|
||||||
mts_sup_alpha,
|
|
||||||
mts_sup_full
|
|
||||||
}
|
|
||||||
support_status;
|
|
||||||
} ;
|
|
||||||
|
|
||||||
|
|
||||||
/* These are taken from the msmUSB.inf file on the Windows driver CD */
|
|
||||||
static const struct vendor_product mts_supported_products[] =
|
|
||||||
{
|
|
||||||
{ "Phantom 336CX", mts_sup_unknown},
|
|
||||||
{ "Phantom 336CX", mts_sup_unknown},
|
|
||||||
{ "Scanmaker X6", mts_sup_alpha},
|
|
||||||
{ "Phantom C6", mts_sup_unknown},
|
|
||||||
{ "Phantom 336CX", mts_sup_unknown},
|
|
||||||
{ "ScanMaker V6USL", mts_sup_unknown},
|
|
||||||
{ "ScanMaker V6USL", mts_sup_unknown},
|
|
||||||
{ "Scanmaker V6UL", mts_sup_unknown},
|
|
||||||
{ "Scanmaker V6UPL", mts_sup_alpha},
|
|
||||||
};
|
|
||||||
|
|
||||||
/* The entries of microtek_table must correspond, line-by-line to
|
/* The entries of microtek_table must correspond, line-by-line to
|
||||||
the entries of mts_supported_products[]. */
|
the entries of mts_supported_products[]. */
|
||||||
|
|
||||||
|
@ -711,7 +684,6 @@ static int mts_usb_probe(struct usb_interface *intf,
|
||||||
int err_retval = -ENOMEM;
|
int err_retval = -ENOMEM;
|
||||||
|
|
||||||
struct mts_desc * new_desc;
|
struct mts_desc * new_desc;
|
||||||
struct vendor_product const* p;
|
|
||||||
struct usb_device *dev = interface_to_usbdev (intf);
|
struct usb_device *dev = interface_to_usbdev (intf);
|
||||||
|
|
||||||
/* the current altsetting on the interface we're probing */
|
/* the current altsetting on the interface we're probing */
|
||||||
|
@ -726,15 +698,6 @@ static int mts_usb_probe(struct usb_interface *intf,
|
||||||
|
|
||||||
MTS_DEBUG_GOT_HERE();
|
MTS_DEBUG_GOT_HERE();
|
||||||
|
|
||||||
p = &mts_supported_products[id - mts_usb_ids];
|
|
||||||
|
|
||||||
MTS_DEBUG_GOT_HERE();
|
|
||||||
|
|
||||||
MTS_DEBUG( "found model %s\n", p->name );
|
|
||||||
if ( p->support_status != mts_sup_full )
|
|
||||||
MTS_MESSAGE( "model %s is not known to be fully supported, reports welcome!\n",
|
|
||||||
p->name );
|
|
||||||
|
|
||||||
/* the current altsetting on the interface we're probing */
|
/* the current altsetting on the interface we're probing */
|
||||||
altsetting = intf->cur_altsetting;
|
altsetting = intf->cur_altsetting;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue