scsi_scan.h 256 B

123456789101112
  1. #ifndef _SCSI_SCSI_SCAN_H
  2. #define _SCSI_SCSI_SCAN_H
  3. #ifdef CONFIG_SCSI
  4. /* drivers/scsi/scsi_scan.c */
  5. extern int scsi_complete_async_scans(void);
  6. #else
  7. static inline int scsi_complete_async_scans(void) { return 0; }
  8. #endif
  9. #endif /* _SCSI_SCSI_SCAN_H */