.. | .. |
---|
36 | 36 | MODULE_DESCRIPTION("Driver for Alauda-based card readers"); |
---|
37 | 37 | MODULE_AUTHOR("Daniel Drake <dsd@gentoo.org>"); |
---|
38 | 38 | MODULE_LICENSE("GPL"); |
---|
| 39 | +MODULE_IMPORT_NS(USB_STORAGE); |
---|
39 | 40 | |
---|
40 | 41 | /* |
---|
41 | 42 | * Status bytes |
---|
.. | .. |
---|
452 | 453 | { |
---|
453 | 454 | struct alauda_info *info = (struct alauda_info *) us->extra; |
---|
454 | 455 | unsigned char status[2]; |
---|
455 | | - int rc; |
---|
456 | 456 | |
---|
457 | | - rc = alauda_get_media_status(us, status); |
---|
| 457 | + alauda_get_media_status(us, status); |
---|
458 | 458 | |
---|
459 | 459 | /* Check for no media or door open */ |
---|
460 | 460 | if ((status[0] & 0x80) || ((status[0] & 0x1F) == 0x10) |
---|