|
@@ -509,26 +509,6 @@ static int generic_drive_reset(ide_drive_t *drive)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-static inline void ide_id_to_hd_driveid(u16 *id)
|
|
|
-{
|
|
|
-#ifdef __BIG_ENDIAN
|
|
|
- /* accessed in struct hd_driveid as 8-bit values */
|
|
|
- id[ATA_ID_MAX_MULTSECT] = __cpu_to_le16(id[ATA_ID_MAX_MULTSECT]);
|
|
|
- id[ATA_ID_CAPABILITY] = __cpu_to_le16(id[ATA_ID_CAPABILITY]);
|
|
|
- id[ATA_ID_OLD_PIO_MODES] = __cpu_to_le16(id[ATA_ID_OLD_PIO_MODES]);
|
|
|
- id[ATA_ID_OLD_DMA_MODES] = __cpu_to_le16(id[ATA_ID_OLD_DMA_MODES]);
|
|
|
- id[ATA_ID_MULTSECT] = __cpu_to_le16(id[ATA_ID_MULTSECT]);
|
|
|
-
|
|
|
- /* as 32-bit values */
|
|
|
- *(u32 *)&id[ATA_ID_LBA_CAPACITY] = ata_id_u32(id, ATA_ID_LBA_CAPACITY);
|
|
|
- *(u32 *)&id[ATA_ID_SPG] = ata_id_u32(id, ATA_ID_SPG);
|
|
|
-
|
|
|
- /* as 64-bit value */
|
|
|
- *(u64 *)&id[ATA_ID_LBA_CAPACITY_2] =
|
|
|
- ata_id_u64(id, ATA_ID_LBA_CAPACITY_2);
|
|
|
-#endif
|
|
|
-}
|
|
|
-
|
|
|
static int ide_get_identity_ioctl(ide_drive_t *drive, unsigned int cmd,
|
|
|
unsigned long arg)
|
|
|
{
|
|
@@ -548,7 +528,7 @@ static int ide_get_identity_ioctl(ide_drive_t *drive, unsigned int cmd,
|
|
|
}
|
|
|
|
|
|
memcpy(id, drive->id, size);
|
|
|
- ide_id_to_hd_driveid(id);
|
|
|
+ ata_id_to_hd_driveid(id);
|
|
|
|
|
|
if (copy_to_user((void __user *)arg, id, size))
|
|
|
rc = -EFAULT;
|