Home
last modified time | relevance | path

Searched refs:maj (Results 1 – 25 of 67) sorted by relevance

123

/linux/arch/arm/mach-mv78xx0/
H A Dpcie.c24 u8 maj; member
78 "PCIe %d.%d MEM", pp->maj, pp->min); in mv78xx0_pcie_preinit()
89 mvebu_mbus_add_window_by_id(MV78XX0_MBUS_PCIE_MEM_TARGET(pp->maj, pp->min), in mv78xx0_pcie_preinit()
90 MV78XX0_MBUS_PCIE_MEM_ATTR(pp->maj, pp->min), in mv78xx0_pcie_preinit()
92 mvebu_mbus_add_window_remap_by_id(MV78XX0_MBUS_PCIE_IO_TARGET(pp->maj, pp->min), in mv78xx0_pcie_preinit()
93 MV78XX0_MBUS_PCIE_IO_ATTR(pp->maj, pp->min), in mv78xx0_pcie_preinit()
226 return IRQ_MV78XX0_PCIE_00 + (pp->maj << 2) + pp->min; in mv78xx0_pcie_map_irq()
237 static void __init add_pcie_port(int maj, int min, void __iomem *base) in add_pcie_port() argument
239 printk(KERN_INFO "MV78xx0 PCIe port %d.%d: ", maj, min); in add_pcie_port()
246 pp->maj = maj; in add_pcie_port()
H A Dcommon.h27 int maj, int min);
29 int maj, int min);
/linux/Documentation/arch/s390/
H A Dconfig3270.sh52 while read devno maj min;do
54 fsmaj=$maj
59 elif [ $maj = CONSOLE ]; then
65 echo mknod $D/$TTY$devno c $maj $min >>$SCR
/linux/drivers/net/ethernet/intel/i40e/
H A Di40e_prototype.h468 static inline bool i40e_is_aq_api_ver_ge(struct i40e_hw *hw, u16 maj, u16 min) in i40e_is_aq_api_ver_ge() argument
470 return (hw->aq.api_maj_ver > maj || in i40e_is_aq_api_ver_ge()
471 (hw->aq.api_maj_ver == maj && hw->aq.api_min_ver >= min)); in i40e_is_aq_api_ver_ge()
482 static inline bool i40e_is_aq_api_ver_lt(struct i40e_hw *hw, u16 maj, u16 min) in i40e_is_aq_api_ver_lt() argument
484 return !i40e_is_aq_api_ver_ge(hw, maj, min); in i40e_is_aq_api_ver_lt()
495 static inline bool i40e_is_fw_ver_ge(struct i40e_hw *hw, u16 maj, u16 min) in i40e_is_fw_ver_ge() argument
497 return (hw->aq.fw_maj_ver > maj || in i40e_is_fw_ver_ge()
498 (hw->aq.fw_maj_ver == maj && hw->aq.fw_min_ver >= min)); in i40e_is_fw_ver_ge()
509 static inline bool i40e_is_fw_ver_lt(struct i40e_hw *hw, u16 maj, u16 min) in i40e_is_fw_ver_lt() argument
511 return !i40e_is_fw_ver_ge(hw, maj, min); in i40e_is_fw_ver_lt()
[all …]
/linux/usr/
H A Dgen_initramfs.sh110 local maj=`field 5 ${dev}`
112 maj=${maj%,}
116 str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
H A Dgen_init_cpio.c275 unsigned int maj, unsigned int min) in cpio_mknod() argument
301 maj, /* rmajor */ in cpio_mknod()
321 unsigned int maj; in cpio_mknod_line() local
326 name, &mode, &uid, &gid, &dev_type, &maj, &min)) { in cpio_mknod_line()
330 rc = cpio_mknod(name, mode, uid, gid, dev_type, maj, min); in cpio_mknod_line()
/linux/sound/pci/asihpi/
H A Dhpi_version.h24 #define HPI_VERSION_CONSTRUCTOR(maj, min, r) ((maj << 16) + (min << 8) + r) argument
/linux/arch/powerpc/kernel/
H A Dsetup-common.c227 unsigned short maj; in show_cpuinfo() local
235 maj = (pvr >> 8) & 0xFF; in show_cpuinfo()
291 maj = ((pvr >> 8) & 0xF); in show_cpuinfo()
295 maj = PVR_MAJ(pvr); in show_cpuinfo()
302 maj = ((pvr >> 8) & 0xFF) - 1; in show_cpuinfo()
307 maj = (pvr >> 8) & 0x0F; in show_cpuinfo()
311 maj = (pvr >> 8) & 0xFF; in show_cpuinfo()
318 maj, min, PVR_VER(pvr), PVR_REV(pvr)); in show_cpuinfo()
/linux/tools/testing/selftests/filesystems/overlayfs/
H A Ddev_in_maps.c33 uint32_t maj, min; in get_file_dev_and_inode() local
37 &start, &end, &maj, &min, &ino) != 5) in get_file_dev_and_inode()
40 stx->stx_dev_major = maj; in get_file_dev_and_inode()
/linux/include/linux/soc/qcom/
H A Dsocinfo.h23 #define SOCINFO_VERSION(maj, min) ((((maj) & 0xffff) << 16)|((min) & 0xffff)) argument
/linux/drivers/scsi/aic94xx/
H A Daic94xx_sds.c237 asd_ha->hw_prof.bios.maj = bc_struct->bios_major; in asd_get_bios_chim()
241 asd_ha->hw_prof.bios.maj, in asd_get_bios_chim()
401 u8 maj; /* 0 */ member
428 u8 maj; /* 0 */ member
512 u8 maj; /* 0 */ member
674 if (ms->maj != 0) { in asd_validate_ms()
676 ms->maj); in asd_validate_ms()
771 dflt_phy_param.maj = 0; in asd_ms_get_phy_params()
788 if (phy_param->maj != 0) { in asd_ms_get_phy_params()
790 phy_param->maj); in asd_ms_get_phy_params()
[all …]
/linux/drivers/crypto/caam/
H A Ddpseci_cmd.h14 #define DPSECI_VER(maj, min) (((maj) << 16) | (min)) argument
/linux/tools/testing/selftests/net/mptcp/
H A Dmptcp_lib.sh219 local v maj min
227 maj=${v%.*}
230 if [ "${maj}" -gt "${exp_maj}" ] ||
231 { [ "${maj}" -eq "${exp_maj}" ] && [ "${min}" -ge "${exp_min}" ]; }; then
/linux/drivers/block/aoe/
H A Daoedev.c451 aoedev_by_aoeaddr(ulong maj, int min, int do_alloc) in aoedev_by_aoeaddr() argument
461 if (d->aoemajor == maj && d->aoeminor == min) { in aoedev_by_aoeaddr()
472 if (d || !do_alloc || minor_get(&sysminor, maj, min) < 0) in aoedev_by_aoeaddr()
498 d->aoemajor = maj; in aoedev_by_aoeaddr()
/linux/drivers/net/ethernet/broadcom/bnge/
H A Dbnge.h136 #define BNGE_FW_VER_CODE(maj, min, bld, rsv) \ argument
137 ((u64)(maj) << 48 | (u64)(min) << 32 | (u64)(bld) << 16 | (rsv))
/linux/drivers/xen/
H A Dsys-hypervisor.c489 xp.version.maj = XENPMU_VER_MAJ; in pmu_mode_store()
505 xp.version.maj = XENPMU_VER_MAJ; in pmu_mode_show()
533 xp.version.maj = XENPMU_VER_MAJ; in pmu_features_store()
547 xp.version.maj = XENPMU_VER_MAJ; in pmu_features_show()
/linux/include/xen/interface/
H A Dxenpmu.h33 uint32_t maj; member
/linux/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_x550.h11 int ixgbe_set_fw_drv_ver_x550(struct ixgbe_hw *hw, u8 maj, u8 min,
/linux/kernel/power/
H A Dhibernate.c1308 unsigned maj, min, offset; in resume_store() local
1312 if (sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2 || in resume_store()
1313 sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset, in resume_store()
1315 dev = MKDEV(maj, min); in resume_store()
1316 if (maj != MAJOR(dev) || min != MINOR(dev)) in resume_store()
/linux/arch/arc/include/asm/
H A Darcregs.h179 unsigned int pad:8, prod:8, maj:8, min:8; member
181 unsigned int min:8, maj:8, prod:8, pad:8;
/linux/drivers/net/ethernet/cavium/liquidio/
H A Docteon_device.h293 u8 maj; member
299 #define OCT_FW_VER(maj, min, rev) \ argument
300 (((u32)(maj) << 16) | ((u32)(min) << 8) | ((u32)(rev)))
/linux/drivers/gpu/drm/
H A Ddrm_internal.h36 #define DRM_IF_VERSION(maj, min) (maj << 16 | min) argument
/linux/fs/hostfs/
H A Dhostfs.h35 unsigned int maj; member
/linux/tools/perf/util/
H A Ddso.c1386 if (a->maj > b->maj) return -1; in __dso_id__cmp()
1387 if (a->maj < b->maj) return 1; in __dso_id__cmp()
1409 .maj = 0,
1430 dso_id->maj = id->maj; in __dso__improve_id()
/linux/tools/perf/Documentation/
H A Dperf-trace.txt166 -F=[all|min|maj]::
167 --pf=[all|min|maj]::
169 major or all pagefaults. Default value is maj.
262 <min|maj>fault [<ip.symbol>+<ip.offset>] => <addr.dso@addr.offset> (<map type><addr level>).
264 - min/maj indicates whether fault event is minor or major;

123