xref: /aosp_15_r20/external/sg3_utils/include/sg_cmds.h (revision 44704f698541f6367e81f991ef8bb54ccbf3fc18)
1*44704f69SBart Van Assche #ifndef SG_CMDS_H
2*44704f69SBart Van Assche #define SG_CMDS_H
3*44704f69SBart Van Assche 
4*44704f69SBart Van Assche /********************************************************************
5*44704f69SBart Van Assche  * This header did contain wrapper declarations for many SCSI commands
6*44704f69SBart Van Assche  * up until sg3_utils version 1.22 . In that version, the command
7*44704f69SBart Van Assche  * wrappers were broken into two groups, the 'basic' ones found in the
8*44704f69SBart Van Assche  * "sg_cmds_basic.h" header and the 'extra' ones found in the
9*44704f69SBart Van Assche  * "sg_cmds_extra.h" header. This header now simply includes those two
10*44704f69SBart Van Assche  * headers.
11*44704f69SBart Van Assche  * In sg3_utils version 1.26 the sg_cmds_mmc.h header was added and
12*44704f69SBart Van Assche  * contains some MMC specific commands.
13*44704f69SBart Van Assche  * The corresponding function definitions are found in the sg_cmds_basic.c,
14*44704f69SBart Van Assche  * sg_cmds_extra.c and sg_cmds_mmc.c files.
15*44704f69SBart Van Assche  ********************************************************************/
16*44704f69SBart Van Assche 
17*44704f69SBart Van Assche #include "sg_cmds_basic.h"
18*44704f69SBart Van Assche #include "sg_cmds_extra.h"
19*44704f69SBart Van Assche #include "sg_cmds_mmc.h"
20*44704f69SBart Van Assche 
21*44704f69SBart Van Assche #endif
22