| /Linux-v6.6/scripts/ | 
| D | ver_linux | 9 	usage = "If some fields are empty or look unusual you may have an old version.\n"20 	printversion("GNU C", version("gcc -dumpversion"))
 21 	printversion("GNU Make", version("make --version"))
 22 	printversion("Binutils", version("ld -v"))
 23 	printversion("Util-linux", version("mount --version"))
 24 	printversion("Mount", version("mount --version"))
 25 	printversion("Module-init-tools", version("depmod -V"))
 26 	printversion("E2fsprogs", version("tune2fs"))
 27 	printversion("Jfsutils", version("fsck.jfs -V"))
 28 	printversion("Reiserfsprogs", version("reiserfsck -V"))
 [all …]
 
 | 
| D | as-version.sh | 4 # Print the assembler name and its version in a 5 or 6-digit form.5 # Also, perform the minimum version check.
 6 # (If it is the integrated assembler, return 0 as the version, and
 7 # skip the version check.)
 11 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
 24 # Clang fails to handle -Wa,--version unless -fno-integrated-as is given.
 32 			# version here. It is the same as the clang version, and
 33 			# it has been already checked by scripts/cc-version.sh.
 45 # Get the first line of the --version output.
 48 set -- $(LC_ALL=C "$@" -Wa,--version -c -x assembler-with-cpp /dev/null -o /dev/null 2>/dev/null)
 [all …]
 
 | 
| D | rust_is_available.sh | 8 min_tool_version=$(dirname $0)/min-tool-version.sh10 # Convert the version string x.y.z to a canonical up-to-7-digits form.
 13 # instances in other version scripts) to give a bit more space to
 81 # Check that the Rust compiler version is suitable.
 83 # Non-stable and distributions' versions may have a version suffix, e.g. `-dev`.
 85 	LC_ALL=C "$RUSTC" --version 2>/dev/null
 89 	echo >&2 "*** Running '$RUSTC' to check the Rust compiler version failed with"
 102 	echo >&2 "*** Running '$RUSTC' to check the Rust compiler version did not return"
 115 	echo >&2 "***   Your version:    $rust_compiler_version"
 116 	echo >&2 "***   Minimum version: $rust_compiler_min_version"
 [all …]
 
 | 
| D | ld-version.sh | 4 # Print the linker name and its version in a 5 or 6-digit form.5 # Also, perform the minimum version check.
 9 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
 24 # Get the first line of the --version output.
 27 set -- $(LC_ALL=C "$@" --version)
 33 min_tool_version=$(dirname $0)/min-tool-version.sh
 37 	version=$1
 50 		version=$2
 62 version=${version%-*}
 64 cversion=$(get_canonical_version $version)
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/ipa/ | 
| D | ipa_version.h | 11  * @IPA_VERSION_3_0:	IPA version 3.0/GSI version 1.012  * @IPA_VERSION_3_1:	IPA version 3.1/GSI version 1.0
 13  * @IPA_VERSION_3_5:	IPA version 3.5/GSI version 1.2
 14  * @IPA_VERSION_3_5_1:	IPA version 3.5.1/GSI version 1.3
 15  * @IPA_VERSION_4_0:	IPA version 4.0/GSI version 2.0
 16  * @IPA_VERSION_4_1:	IPA version 4.1/GSI version 2.0
 17  * @IPA_VERSION_4_2:	IPA version 4.2/GSI version 2.2
 18  * @IPA_VERSION_4_5:	IPA version 4.5/GSI version 2.5
 19  * @IPA_VERSION_4_7:	IPA version 4.7/GSI version 2.7
 20  * @IPA_VERSION_4_9:	IPA version 4.9/GSI version 2.9
 [all …]
 
 | 
| D | ipa_reg.c | 12 /* Is this register ID valid for the current IPA version? */15 	enum ipa_version version = ipa->version;  in ipa_reg_id_valid()  local
 19 		return version == IPA_VERSION_4_2;  in ipa_reg_id_valid()
 22 		return version < IPA_VERSION_5_0 && version != IPA_VERSION_4_2;  in ipa_reg_id_valid()
 27 		return version >= IPA_VERSION_5_0;  in ipa_reg_id_valid()
 31 		return version < IPA_VERSION_4_5;  in ipa_reg_id_valid()
 36 		return version >= IPA_VERSION_3_5;  in ipa_reg_id_valid()
 41 		return version >= IPA_VERSION_4_5;  in ipa_reg_id_valid()
 45 		return version <= IPA_VERSION_3_1 ||  in ipa_reg_id_valid()
 46 		       version == IPA_VERSION_4_5 ||  in ipa_reg_id_valid()
 [all …]
 
 | 
| /Linux-v6.6/drivers/staging/rtl8723bs/include/ | 
| D | HalVerDef.h | 55 #define GET_CVID_IC_TYPE(version)			((enum hal_ic_type_e)((version).ICType))  argument56 #define GET_CVID_CHIP_TYPE(version)			((enum hal_chip_type_e)((version).ChipType))  argument
 57 #define GET_CVID_MANUFACTUER(version)		((enum hal_vendor_e)((version).VendorType))  argument
 58 #define GET_CVID_CUT_VERSION(version)		((enum hal_cut_version_e)((version).CUTVersion))  argument
 59 #define GET_CVID_ROM_VERSION(version)		(((version).ROMVer) & ROM_VERSION_MASK)  argument
 67 #define IS_TEST_CHIP(version)			((GET_CVID_CHIP_TYPE(version) == TEST_CHIP) ? true : false)  argument
 68 #define IS_NORMAL_CHIP(version)			((GET_CVID_CHIP_TYPE(version) == NORMAL_CHIP) ? true : false)  argument
 71 #define IS_A_CUT(version)				((GET_CVID_CUT_VERSION(version) == A_CUT_VERSION) ? true : false)  argument
 72 #define IS_B_CUT(version)				((GET_CVID_CUT_VERSION(version) == B_CUT_VERSION) ? true : false)  argument
 73 #define IS_C_CUT(version)				((GET_CVID_CUT_VERSION(version) == C_CUT_VERSION) ? true : false)  argument
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ | 
| D | def.h | 38 #define GET_CVID_IC_TYPE(version)	((version) & IC_TYPE_MASK)  argument39 #define GET_CVID_CHIP_TYPE(version)	((version) & CHIP_TYPE_MASK)  argument
 40 #define GET_CVID_RF_TYPE(version)	((version) & RF_TYPE_MASK)  argument
 41 #define GET_CVID_MANUFACTUER(version)	((version) & MANUFACTUER_MASK)  argument
 42 #define GET_CVID_ROM_VERSION(version)	((version) & ROM_VERSION_MASK)  argument
 43 #define GET_CVID_CUT_VERSION(version)	((version) & CUT_VERSION_MASK)  argument
 45 #define IS_81XXC(version)	((GET_CVID_IC_TYPE(version) == 0) ?\  argument
 47 #define IS_8723_SERIES(version)	((GET_CVID_IC_TYPE(version) == CHIP_8723) ? \  argument
 49 #define IS_1T1R(version)	((GET_CVID_RF_TYPE(version)) ? false : true)  argument
 50 #define IS_1T2R(version)	((GET_CVID_RF_TYPE(version) == RF_TYPE_1T2R)\  argument
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ | 
| D | def.h | 18 /* [15:12] IC version(CUT): A-cut=0, B-cut=1, C-cut=2, D-cut=345 #define GET_CVID_IC_TYPE(version)	((version) & IC_TYPE_MASK)  argument
 46 #define GET_CVID_CHIP_TYPE(version)	((version) & CHIP_TYPE_MASK)  argument
 47 #define GET_CVID_RF_TYPE(version)	((version) & RF_TYPE_MASK)  argument
 48 #define GET_CVID_MANUFACTUER(version)	((version) & MANUFACTUER_MASK)  argument
 49 #define GET_CVID_ROM_VERSION(version)	((version) & ROM_VERSION_MASK)  argument
 50 #define GET_CVID_CUT_VERSION(version)	((version) & CUT_VERSION_MASK)  argument
 52 #define IS_81XXC(version)						\  argument
 53 	((GET_CVID_IC_TYPE(version) == 0) ? true : false)
 54 #define IS_8723_SERIES(version)						\  argument
 [all …]
 
 | 
| /Linux-v6.6/tools/testing/selftests/sparc64/drivers/ | 
| D | adi-test.c | 318 	unsigned char version[1], expected_version;  in test0_prpw_aligned_1byte()  local322 	version[0] = random_version();  in test0_prpw_aligned_1byte()
 323 	expected_version = version[0];  in test0_prpw_aligned_1byte()
 327 	ret = pwrite_adi(fd, version, sizeof(version), offset);  in test0_prpw_aligned_1byte()
 328 	if (ret != sizeof(version))  in test0_prpw_aligned_1byte()
 331 	ret = pread_adi(fd, version, sizeof(version), offset);  in test0_prpw_aligned_1byte()
 332 	if (ret != sizeof(version))  in test0_prpw_aligned_1byte()
 335 	if (expected_version != version[0]) {  in test0_prpw_aligned_1byte()
 336 		DEBUG_PRINT_L2("\tExpected version %d but read version %d\n",  in test0_prpw_aligned_1byte()
 337 			       expected_version, version[0]);  in test0_prpw_aligned_1byte()
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ | 
| D | def.h | 65 /* [15:12] IC version(CUT): A-cut=0, B-cut=1, C-cut=2, D-cut=3 */92 #define GET_CVID_IC_TYPE(version)	((version) & IC_TYPE_MASK)  argument
 93 #define GET_CVID_CHIP_TYPE(version)	((version) & CHIP_TYPE_MASK)  argument
 94 #define GET_CVID_RF_TYPE(version)	((version) & RF_TYPE_MASK)  argument
 95 #define GET_CVID_MANUFACTUER(version)	((version) & MANUFACTUER_MASK)  argument
 96 #define GET_CVID_ROM_VERSION(version)	((version) & ROM_VERSION_MASK)  argument
 97 #define GET_CVID_CUT_VERSION(version)	((version) & CUT_VERSION_MASK)  argument
 99 #define IS_1T1R(version)		((GET_CVID_RF_TYPE(version)) ?	\  argument
 101 #define IS_1T2R(version)		((GET_CVID_RF_TYPE(version) ==	\  argument
 103 #define IS_2T2R(version)		((GET_CVID_RF_TYPE(version) ==	\  argument
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ | 
| D | def.h | 163 #define GET_CVID_IC_TYPE(version)	((version) & IC_TYPE_MASK)  argument164 #define GET_CVID_CHIP_TYPE(version)	((version) & CHIP_TYPE_MASK)  argument
 165 #define GET_CVID_RF_TYPE(version)	((version) & RF_TYPE_MASK)  argument
 166 #define GET_CVID_MANUFACTUER(version)	((version) & MANUFACTUER_MASK)  argument
 167 #define GET_CVID_ROM_VERSION(version)	((version) & ROM_VERSION_MASK)  argument
 168 #define GET_CVID_CUT_VERSION(version)	((version) & CUT_VERSION_MASK)  argument
 170 #define IS_1T1R(version)	((GET_CVID_RF_TYPE(version)) ? false : true)  argument
 171 #define IS_1T2R(version)	((GET_CVID_RF_TYPE(version) == RF_TYPE_1T2R)\  argument
 173 #define IS_2T2R(version)	((GET_CVID_RF_TYPE(version) == RF_TYPE_2T2R)\  argument
 176 #define IS_8812_SERIES(version)	((GET_CVID_IC_TYPE(version) == CHIP_8812) ? \  argument
 [all …]
 
 | 
| /Linux-v6.6/include/linux/soc/qcom/ | 
| D | socinfo.h | 21 	/* Version 2 */24 	/* Version 3 */
 26 	/* Version 4 */
 28 	/* Version 5 */
 30 	/* Version 6 */
 32 	/* Version 7 */
 35 	/* Version 8 */
 40 	/* Version 9 */
 42 	/* Version 10 */
 44 	/* Version 11 */
 [all …]
 
 | 
| /Linux-v6.6/Documentation/scsi/ | 
| D | scsi-generic.rst | 18 Rather than document the driver's interface here, version information26       - sg version 1 (original) from 1992 to early 1999 (lk 2.2.5) .
 28       - sg version 2 from lk 2.2.6 in the 2.2 series. It is based on
 29 	an extended version of the sg_header interface structure.
 30       - sg version 3 found in the lk 2.4 series (and the lk 2.5 series).
 40 This describes the sg version 3 driver found in the lk 2.4 series.
 42 Documentation (large version) for the version 2 sg driver found in the
 61     sg3_utils   for the sg version 3 driver found in lk 2.4
 62     sg_utils    for the sg version 2 (and original) driver found in lk 2.2
 76 Here is a list of Linux kernels in the 2.4 series that had the new version
 [all …]
 
 | 
| D | ChangeLog.megaraid_sas | 7 Current Version : 06.803.02.00-rc18 Old Version     : 06.803.01.00-rc1
 13     5. Version and Changelog update.
 20 Current Version : 06.803.01.00-rc1
 21 Old Version     : 06.700.06.00-rc1
 26     5. Version and Changelog update.
 33 Current Version : 06.700.06.00-rc1
 34 Old Version     : 06.600.18.00-rc1
 36     2. Version and Changelog update.
 43 Current Version : 06.600.18.00-rc1
 [all …]
 
 | 
| D | ChangeLog.sym53c8xx | 2 	* version sym53c8xx-1.7.3c13 	* version sym53c8xx-1.7.3b
 23 	* version sym53c8xx-1.7.3a
 29 	* version sym53c8xx-1.7.3
 35 	* version sym53c8xx-1.7.3-pre1
 65 	* version sym53c8xx-1.7.2
 66 	- Remove the hack for PPC added in previous driver version.
 83 	* version sym53c8xx-1.7.1
 90 	* version sym53c8xx-1.7.0
 101 	    report `resid' to user for linux version >= 2.3.99
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/wireless/realtek/rtlwifi/rtl8192c/ | 
| D | fw_common.h | 22 #define CHIP_VENDOR_UMC_B_CUT		BIT(6) /* Chip version for ECO */23 #define IS_CHIP_VER_B(version)  ((version & CHIP_VER_B) ? true : false)  argument
 25 #define GET_CVID_RF_TYPE(version)	\  argument
 26 	((version) & RF_TYPE_MASK)
 27 #define GET_CVID_CUT_VERSION(version) \  argument
 28 	((version) & CUT_VERSION_MASK)
 29 #define IS_NORMAL_CHIP(version)	\  argument
 30 	((version & NORMAL_CHIP) ? true : false)
 31 #define IS_2T2R(version) \  argument
 32 	(((GET_CVID_RF_TYPE(version)) == \
 [all …]
 
 | 
| /Linux-v6.6/drivers/net/ethernet/huawei/hinic/ | 
| D | hinic_port.h | 26 	u8 version;  member126 	u8              version;  member
 137 	u8      version;  member
 147 	u8      version;  member
 156 	u8      version;  member
 166 	u8      version;  member
 176 	u8      version;  member
 185 	u8      version;  member
 195 	u8	version;  member
 210 	u8	version;  member
 [all …]
 
 | 
| /Linux-v6.6/sound/pci/asihpi/ | 
| D | hpi_version.h | 2 /** HPI Version Definitions3 Development releases have odd minor version.
 4 Production releases have even minor version.
 13 /* *** HPI_VER is the only edit required to update version *** */
 14 /** HPI version */
 17 /** HPI version string in dotted decimal format */
 20 /** Library version as documented in hpi-api-versions.txt */
 23 /** Construct hpi version number from major, minor, release numbers */
 26 /** Extract major version from hpi version number */
 28 /** Extract minor version from hpi version number */
 [all …]
 
 | 
| /Linux-v6.6/include/uapi/linux/ | 
| D | batadv_packet.h | 200  * @version: batman-adv protocol version, part of the general header212 	__u8   version;  member
 228  * @version: batman-adv protocol version, part of the general header
 238 	__u8   version;  member
 252  * @version: batman-adv protocol version, part of the general header
 259 	__u8   version;  member
 270  * @version: batman-adv protocol version, part of the general header
 284 	__u8 version;  member
 296  * @version: batman-adv protocol version, part of the general header
 307 	__u8   version;  member
 [all …]
 
 | 
| /Linux-v6.6/include/uapi/sound/sof/ | 
| D | abi.h | 11  * MAJOR.MINOR.PATCH version number. See https://semver.org/13  * Rules for incrementing or changing version :-
 15  * 1) Increment MAJOR version if you make incompatible API changes. MINOR and
 18  * 2) Increment MINOR version if you add backwards compatible features or
 21  * 3) Increment PATCH version if you add backwards compatible bug fixes.
 29 /* SOF ABI version major, minor and patch numbers */
 34 /* SOF ABI version number. Format within 32bit word is MMmmmppp */
 47 #define SOF_ABI_VERSION_MAJOR(version) \  argument
 48 	(((version) >> SOF_ABI_MAJOR_SHIFT) & SOF_ABI_MAJOR_MASK)
 49 #define SOF_ABI_VERSION_MINOR(version)	\  argument
 [all …]
 
 | 
| /Linux-v6.6/net/batman-adv/ | 
| D | tvlv.c | 61  *  based on the provided type and version (both need to match)64  * @version: tvlv handler version to look for
 69 batadv_tvlv_handler_get(struct batadv_priv *bat_priv, u8 type, u8 version)  in batadv_tvlv_handler_get()  argument
 79 		if (tvlv_handler_tmp->version != version)  in batadv_tvlv_handler_get()
 120  *  list based on the provided type and version (both need to match)
 123  * @version: tvlv container version to look for
 131 batadv_tvlv_container_get(struct batadv_priv *bat_priv, u8 type, u8 version)  in batadv_tvlv_container_get()  argument
 141 		if (tvlv_tmp->tvlv_hdr.version != version)  in batadv_tvlv_container_get()
 203  *  provided type and version (both need to match)
 206  * @version: tvlv container type to unregister
 [all …]
 
 | 
| /Linux-v6.6/drivers/staging/media/atomisp/pci/ | 
| D | ia_css_version.h | 8  * version 2, as published by the Free Software Foundation.20  * This file contains functions to retrieve CSS-API version information
 25 /* a common size for the version arrays */
 28 /* @brief Retrieves the current CSS version
 29  * @param[out]	version		A pointer to a buffer where to put the generated
 30  *				version string. NULL is ignored.
 31  * @param[in]	max_size	Size of the version buffer. If version string
 35  * This function generates and returns the version string. If FW is loaded, it
 36  * attaches the FW version.
 39 ia_css_get_version(char *version, int max_size);
 
 | 
| /Linux-v6.6/drivers/scsi/qla2xxx/ | 
| D | qla_edif_bsg.h | 33 	uint8_t		version;  member46 	uint8_t version;  member
 53 	uint8_t		version;  member
 62 	uint8_t		version;  member
 70 	uint8_t		version;  member
 77 	uint8_t		version;  member
 84 	uint8_t		version;  member
 106 	uint8_t		version;  member
 120 	uint8_t	version;  member
 134 	uint8_t		version;  member
 [all …]
 
 | 
| /Linux-v6.6/drivers/media/platform/allegro-dvt/ | 
| D | allegro-mail.c | 47 	enum mcu_msg_version version = msg->header.version;  in allegro_enc_init()  local55 	if (version >= MCU_MSG_VERSION_2019_2) {  in allegro_enc_init()
 65 	enum mcu_msg_version version = param->version;  in settings_get_mcu_codec()  local
 68 	if (version < MCU_MSG_VERSION_2019_2) {  in settings_get_mcu_codec()
 90 	enum mcu_msg_version version = param->version;  in allegro_encode_config_blob()  local
 96 	if (version >= MCU_MSG_VERSION_2019_2)  in allegro_encode_config_blob()
 100 	if (version >= MCU_MSG_VERSION_2019_2)  in allegro_encode_config_blob()
 103 	if (version < MCU_MSG_VERSION_2019_2)  in allegro_encode_config_blob()
 106 	if (version >= MCU_MSG_VERSION_2019_2)  in allegro_encode_config_blob()
 117 	if (version >= MCU_MSG_VERSION_2019_2)  in allegro_encode_config_blob()
 [all …]
 
 |