ide-disk_ioctl.c 800 B

1234567891011121314151617181920212223242526
  1. #include <linux/kernel.h>
  2. #include <linux/ide.h>
  3. #include <linux/hdreg.h>
  4. #include "ide-disk.h"
  5. static const struct ide_ioctl_devset ide_disk_ioctl_settings[] = {
  6. { HDIO_GET_ADDRESS, HDIO_SET_ADDRESS, &ide_devset_address },
  7. { HDIO_GET_MULTCOUNT, HDIO_SET_MULTCOUNT, &ide_devset_multcount },
  8. { HDIO_GET_NOWERR, HDIO_SET_NOWERR, &ide_devset_nowerr },
  9. { HDIO_GET_WCACHE, HDIO_SET_WCACHE, &ide_devset_wcache },
  10. { HDIO_GET_ACOUSTIC, HDIO_SET_ACOUSTIC, &ide_devset_acoustic },
  11. { 0 }
  12. };
  13. int ide_disk_ioctl(ide_drive_t *drive, struct block_device *bdev, fmode_t mode,
  14. unsigned int cmd, unsigned long arg)
  15. {
  16. int err;
  17. err = ide_setting_ioctl(drive, bdev, cmd, arg, ide_disk_ioctl_settings);
  18. if (err != -EOPNOTSUPP)
  19. return err;
  20. return generic_ide_ioctl(drive, bdev, cmd, arg);
  21. }