scsi_driver.h 859 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _SCSI_SCSI_DRIVER_H
  3. #define _SCSI_SCSI_DRIVER_H
  4. #include <linux/device.h>
  5. struct module;
  6. struct request;
  7. struct scsi_cmnd;
  8. struct scsi_device;
  9. struct scsi_driver {
  10. struct device_driver gendrv;
  11. void (*rescan)(struct device *);
  12. int (*init_command)(struct scsi_cmnd *);
  13. void (*uninit_command)(struct scsi_cmnd *);
  14. int (*done)(struct scsi_cmnd *);
  15. int (*eh_action)(struct scsi_cmnd *, int);
  16. void (*eh_reset)(struct scsi_cmnd *);
  17. };
  18. #define to_scsi_driver(drv) \
  19. container_of((drv), struct scsi_driver, gendrv)
  20. extern int scsi_register_driver(struct device_driver *);
  21. #define scsi_unregister_driver(drv) \
  22. driver_unregister(drv);
  23. extern int scsi_register_interface(struct class_interface *);
  24. #define scsi_unregister_interface(intf) \
  25. class_interface_unregister(intf)
  26. #endif /* _SCSI_SCSI_DRIVER_H */