/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/include/ |
D | HalVerDef.h | 77 #define GET_CVID_IC_TYPE(version) ((HAL_IC_TYPE_E)((version).ICType)) argument 78 #define GET_CVID_CHIP_TYPE(version) ((HAL_CHIP_TYPE_E)((version).ChipType)) argument 79 #define GET_CVID_RF_TYPE(version) ((HAL_RF_TYPE_E)((version).RFType)) argument 80 #define GET_CVID_MANUFACTUER(version) ((HAL_VENDOR_E)((version).VendorType)) argument 81 #define GET_CVID_CUT_VERSION(version) ((HAL_CUT_VERSION_E)((version).CUTVersion)) argument 82 #define GET_CVID_ROM_VERSION(version) (((version).ROMVer) & ROM_VERSION_MASK) argument 90 #define IS_TEST_CHIP(version) ((GET_CVID_CHIP_TYPE(version) == TEST_CHIP) ? true : false) argument 91 #define IS_NORMAL_CHIP(version) ((GET_CVID_CHIP_TYPE(version) == NORMAL_CHIP) ? true : false) argument 94 #define IS_A_CUT(version) ((GET_CVID_CUT_VERSION(version) == A_CUT_VERSION) ? true : false) argument 95 #define IS_B_CUT(version) ((GET_CVID_CUT_VERSION(version) == B_CUT_VERSION) ? true : false) argument [all …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | def.h | 38 #define GET_CVID_IC_TYPE(version) ((version) & IC_TYPE_MASK) argument 39 #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 …]
|
/kernel/linux/linux-5.10/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=3 45 #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 …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/sparc64/drivers/ |
D | adi-test.c | 322 unsigned char version[1], expected_version; in test0_prpw_aligned_1byte() local 326 version[0] = random_version(); in test0_prpw_aligned_1byte() 327 expected_version = version[0]; in test0_prpw_aligned_1byte() 331 ret = pwrite_adi(fd, version, sizeof(version), offset); in test0_prpw_aligned_1byte() 332 if (ret != sizeof(version)) in test0_prpw_aligned_1byte() 335 ret = pread_adi(fd, version, sizeof(version), offset); in test0_prpw_aligned_1byte() 336 if (ret != sizeof(version)) in test0_prpw_aligned_1byte() 339 if (expected_version != version[0]) { in test0_prpw_aligned_1byte() 340 DEBUG_PRINT_L2("\tExpected version %d but read version %d\n", in test0_prpw_aligned_1byte() 341 expected_version, version[0]); in test0_prpw_aligned_1byte() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | def.h | 163 #define GET_CVID_IC_TYPE(version) ((version) & IC_TYPE_MASK) argument 164 #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 …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/Documentation/scsi/ |
D | scsi-generic.rst | 18 Rather than document the driver's interface here, version information 26 - 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). 41 This describes the sg version 3 driver found in the lk 2.4 series. 48 Documentation for the version 2 sg driver found in the lk 2.2 series can 49 be found at http://sg.danny.cz/sg/. A larger version 71 sg3_utils for the sg version 3 driver found in lk 2.4 72 sg_utils for the sg version 2 (and original) driver found in lk 2.2 [all …]
|
D | ChangeLog.megaraid_sas | 7 Current Version : 06.803.02.00-rc1 8 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.3c 13 * 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 …]
|
/kernel/liteos_m/arch/risc-v/nuclei/gcc/nmsis/Core/Include/ |
D | nmsis_version.h | 6 * Licensed under the Apache License, Version 2.0 (the License); you may 22 * \defgroup NMSIS_Core_VersionControl Version Control 24 * \brief Version \#define symbols for NMSIS release specific C/C++ source code 27 * We followed the [semantic versioning 2.0.0](https://semver.org/) to control NMSIS version. 28 * The version format is **MAJOR.MINOR.PATCH**, increment the: 29 * 1. MAJOR version when you make incompatible API changes, 30 * 2. MINOR version when you add functionality in a backwards compatible manner, and 31 * 3. PATCH version when you make backwards compatible bug fixes. 35 * **Example Usage for NMSIS Version Check**: 49 * \brief NMSIS Version definitions [all …]
|
/kernel/linux/linux-5.10/sound/pci/asihpi/ |
D | hpi_version.h | 2 /** HPI Version Definitions 3 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 …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/huawei/hinic/ |
D | hinic_port.h | 25 u8 version; member 125 u8 version; member 136 u8 version; member 146 u8 version; member 155 u8 version; member 165 u8 version; member 175 u8 version; member 184 u8 version; member 194 u8 version; member 209 u8 version; member [all …]
|
/kernel/linux/linux-5.10/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. 27 /* SOF ABI version major, minor and patch numbers */ 32 /* SOF ABI version number. Format within 32bit word is MMmmmppp */ 45 #define SOF_ABI_VERSION_MAJOR(version) \ argument 46 (((version) >> SOF_ABI_MAJOR_SHIFT) & SOF_ABI_MAJOR_MASK) 47 #define SOF_ABI_VERSION_MINOR(version) \ argument [all …]
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | batadv_packet.h | 198 * @version: batman-adv protocol version, part of the general header 210 __u8 version; member 226 * @version: batman-adv protocol version, part of the general header 236 __u8 version; member 250 * @version: batman-adv protocol version, part of the general header 257 __u8 version; member 268 * @version: batman-adv protocol version, part of the general header 282 __u8 version; member 294 * @version: batman-adv protocol version, part of the general header 305 __u8 version; member [all …]
|
/kernel/linux/linux-5.10/scripts/package/ |
D | builddeb | 81 destdir=$pdir/usr/src/linux-headers-$version 90 mkdir -p $pdir/lib/modules/$version/ 91 ln -s /usr/src/linux-headers-$version $pdir/lib/modules/$version/build 109 version=$KERNELRELEASE 112 packagename=linux-image-$version 116 packagename=user-mode-linux-$version 124 installed_image_path="usr/bin/linux-$version" 127 installed_image_path="boot/vmlinux-$version" 130 installed_image_path="boot/vmlinuz-$version" 142 …mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin" "$tmpdir/usr/share/doc/$packagen… [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/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);
|
/kernel/linux/linux-5.10/fs/fscache/ |
D | fsdef.c | 24 * structure version supplied by the netfs: 33 * If an entry with the appropriate name does already exist, the version is 34 * compared. If the version is different, the entire subtree from that entry 60 * a specific netfs and only applicable to a particular version of the index 70 * check that the index structure version number stored in the auxiliary data 80 uint32_t version; in fscache_fsdef_netfs_check_aux() local 84 if (datalen != sizeof(version)) { in fscache_fsdef_netfs_check_aux() 85 _leave(" = OBSOLETE [dl=%d v=%zu]", datalen, sizeof(version)); in fscache_fsdef_netfs_check_aux() 89 memcpy(&version, data, sizeof(version)); in fscache_fsdef_netfs_check_aux() 90 if (version != netfs->version) { in fscache_fsdef_netfs_check_aux() [all …]
|
/kernel/linux/linux-5.10/drivers/staging/media/allegro-dvt/ |
D | allegro-mail.c | 47 enum mcu_msg_version version = msg->header.version; in allegro_enc_init() local 55 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() 86 enum mcu_msg_version version = param->version; in allegro_encode_config_blob() local 92 if (version >= MCU_MSG_VERSION_2019_2) in allegro_encode_config_blob() 96 if (version >= MCU_MSG_VERSION_2019_2) in allegro_encode_config_blob() 99 if (version < MCU_MSG_VERSION_2019_2) in allegro_encode_config_blob() 102 if (version >= MCU_MSG_VERSION_2019_2) in allegro_encode_config_blob() 120 if (version >= MCU_MSG_VERSION_2019_2) { in allegro_encode_config_blob() [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvif/ |
D | ioctl.h | 8 __u8 version; member 36 __u64 version; member 41 __u8 version; member 53 __u8 version; member 68 __u8 version; member 77 __u8 version; member 86 __u8 version; member 101 __u8 version; member 110 __u8 version; member 117 __u8 version; member [all …]
|
D | cl5070.h | 8 __u8 version; member 16 __u8 version; member 30 __u8 version; member 46 __u8 version; member 54 __u8 version; member 61 __u8 version; member 67 __u8 version; member 80 __u8 version; member 87 __u8 version; member 93 __u8 version; member
|
/kernel/linux/linux-5.10/Documentation/sparc/ |
D | adi.rst | 6 ADI allows a task to set version tags on any subset of its address 7 space. Once ADI is enabled and version tags are set for ranges of 9 to memory in these ranges to the version set by the application 20 addresses ADI is being enabled on. MMU checks the version tag only 23 3. Set the version tag for virtual addresses using stxa instruction 30 top bits in the virtual address that specify the version tag. Once 31 version tag has been set for a memory location, the tag is stored in the 32 physical memory and the same tag must be present in the ADI version tag 34 SPARC M7 processor, MMU uses bits 63-60 for version tags and ADI block 36 version to, say 10, on a range of memory, must access that memory using [all …]
|
/kernel/linux/linux-5.10/LICENSES/deprecated/ |
D | GFDL-1.1 | 24 Version 1.1, March 2000 64 A "Modified Version" of the Document means any work containing the 168 them a chance to provide you with an updated version of the Document. 173 You may copy and distribute a Modified Version of the Document under 175 the Modified Version under precisely this License, with the Modified 176 Version filling the role of the Document, thus licensing distribution 177 and modification of the Modified Version to whoever possesses a copy 178 of it. In addition, you must do these things in the Modified Version: 183 of the Document). You may use the same title as a previous version 184 if the original publisher of that version gives permission. [all …]
|