Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.30 11 lines 256 B view raw
1#ifndef _SCSI_SCSI_SCAN_H 2#define _SCSI_SCSI_SCAN_H 3 4#ifdef CONFIG_SCSI 5/* drivers/scsi/scsi_scan.c */ 6extern int scsi_complete_async_scans(void); 7#else 8static inline int scsi_complete_async_scans(void) { return 0; } 9#endif 10 11#endif /* _SCSI_SCSI_SCAN_H */