Lines Matching full:sector
96 unsigned long sectors; /* total sector count */
97 unsigned long ssize; /* sector size in bytes */
155 u32 sector, in jumpshot_read_data() argument
171 if (sector > 0x0FFFFFFF) in jumpshot_read_data()
193 command[2] = sector & 0xFF; in jumpshot_read_data()
194 command[3] = (sector >> 8) & 0xFF; in jumpshot_read_data()
195 command[4] = (sector >> 16) & 0xFF; in jumpshot_read_data()
197 command[5] = 0xE0 | ((sector >> 24) & 0x0F); in jumpshot_read_data()
217 sector += thistime; in jumpshot_read_data()
232 u32 sector, in jumpshot_write_data() argument
248 if (sector > 0x0FFFFFFF) in jumpshot_write_data()
275 command[2] = sector & 0xFF; in jumpshot_write_data()
276 command[3] = (sector >> 8) & 0xFF; in jumpshot_write_data()
277 command[4] = (sector >> 16) & 0xFF; in jumpshot_write_data()
279 command[5] = 0xE0 | ((sector >> 24) & 0x0F); in jumpshot_write_data()
309 sector += thistime; in jumpshot_write_data()
512 usb_stor_dbg(us, "READ_CAPACITY: %ld sectors, %ld bytes per sector\n", in jumpshot_transport()