Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 33755 - Bad detection of the slots in a transcend usb multi-card reader
Summary: Bad detection of the slots in a transcend usb multi-card reader
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: x86-kernel@gentoo.org (DEPRECATED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-18 06:39 UTC by Jordi Irazuzta Cardús
Modified: 2003-11-18 11:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jordi Irazuzta Cardús 2003-11-18 06:39:02 UTC
I purchased a transcend usb multicard reader, the question is that when I
configured the device, the system only found one of the three slots (Yes!! I
enable the option 'probe all LUNS in each scsi device' in the kernel).
To get the problem solved, I edited the usb-storage driver (usb.c), and changed:

case US_SC_8020:
                        ss->protocol_name = "8020i";
                        ss->proto_handler = usb_stor_ATAPI_command;
                        ss->max_lun = 0;
                        break;
                                                                               
                                              
for  
 case US_SC_8020:
                        ss->protocol_name = "8020i";
                        ss->proto_handler = usb_stor_ATAPI_command;
                        ss->max_lun = 2;
                        break;
                                                                               
                                              
when i change the zero for the two and recompile, it works.
I don't know why the number by default of max_lun is zero. Because of this i
report this fact.





  

Reproducible: Always
Steps to Reproduce:
1.Connect a transcend usb multi-card reader
2.Configure it like other similar device 
3.Try to acces all the slots

Actual Results:  
No Detect all the slots
Comment 1 Brian Jackson (RETIRED) gentoo-dev 2003-11-18 11:42:25 UTC
this doesn't look like a Gentoo specific problem, you should file this upstream via http://bugzilla.kernel.org/