Home
last modified time | relevance | path

Searched refs:dev_p (Results 1 – 7 of 7) sorted by relevance

/linux-6.15/drivers/gpu/drm/kmb/
H A Dkmb_drv.h76 static inline void kmb_write_lcd(struct kmb_drm_private *dev_p, in kmb_write_lcd() argument
79 writel(value, (dev_p->lcd_mmio + reg)); in kmb_write_lcd()
82 static inline u32 kmb_read_lcd(struct kmb_drm_private *dev_p, unsigned int reg) in kmb_read_lcd() argument
84 return readl(dev_p->lcd_mmio + reg); in kmb_read_lcd()
87 static inline void kmb_set_bitmask_lcd(struct kmb_drm_private *dev_p, in kmb_set_bitmask_lcd() argument
90 u32 reg_val = kmb_read_lcd(dev_p, reg); in kmb_set_bitmask_lcd()
92 kmb_write_lcd(dev_p, reg, (reg_val | mask)); in kmb_set_bitmask_lcd()
95 static inline void kmb_clr_bitmask_lcd(struct kmb_drm_private *dev_p, in kmb_clr_bitmask_lcd() argument
98 u32 reg_val = kmb_read_lcd(dev_p, reg); in kmb_clr_bitmask_lcd()
100 kmb_write_lcd(dev_p, reg, (reg_val & (~mask))); in kmb_clr_bitmask_lcd()
/linux-6.15/drivers/net/ethernet/intel/ice/
H A Dice_common.c2456 dev_p->num_funcs = hweight32(number); in ice_parse_valid_functions_cap()
2458 dev_p->num_funcs); in ice_parse_valid_functions_cap()
2477 dev_p->num_vfs_exposed = number; in ice_parse_vf_dev_caps()
2479 dev_p->num_vfs_exposed); in ice_parse_vf_dev_caps()
2498 dev_p->num_vsi_allocd_to_host); in ice_parse_vsi_dev_caps()
2537 dev_p->common_cap.ieee_1588); in ice_parse_1588_dev_caps()
2578 dev_p->num_flow_director_fltr); in ice_parse_fdir_dev_caps()
2598 dev_p->supported_sensors); in ice_parse_sensor_reading_cap()
2610 struct ice_hw_dev_caps *dev_p, in ice_parse_nac_topo_dev_caps() argument
2626 dev_p->nac_topo.id); in ice_parse_nac_topo_dev_caps()
[all …]
/linux-6.15/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_e610.c601 struct ixgbe_hw_dev_caps *dev_p, in ixgbe_parse_valid_functions_cap() argument
616 struct ixgbe_hw_dev_caps *dev_p, in ixgbe_parse_vf_dev_caps() argument
619 dev_p->num_vfs_exposed = le32_to_cpu(cap->number); in ixgbe_parse_vf_dev_caps()
631 struct ixgbe_hw_dev_caps *dev_p, in ixgbe_parse_vsi_dev_caps() argument
646 struct ixgbe_hw_dev_caps *dev_p, in ixgbe_parse_fdir_dev_caps() argument
667 struct ixgbe_hw_dev_caps *dev_p, in ixgbe_parse_dev_caps() argument
675 memset(dev_p, 0, sizeof(*dev_p)); in ixgbe_parse_dev_caps()
685 ixgbe_parse_valid_functions_cap(hw, dev_p, in ixgbe_parse_dev_caps()
689 ixgbe_parse_vf_dev_caps(hw, dev_p, &cap_resp[i]); in ixgbe_parse_dev_caps()
692 ixgbe_parse_vsi_dev_caps(hw, dev_p, &cap_resp[i]); in ixgbe_parse_dev_caps()
[all …]
/linux-6.15/sound/core/
H A Dinit.c127 int snd_device_alloc(struct device **dev_p, struct snd_card *card) in snd_device_alloc() argument
131 *dev_p = NULL; in snd_device_alloc()
140 *dev_p = dev; in snd_device_alloc()
/linux-6.15/include/sound/
H A Dcore.h242 int snd_device_alloc(struct device **dev_p, struct snd_card *card);
/linux-6.15/include/linux/
H A Ddevice-mapper.h185 int dm_devt_from_path(const char *path, dev_t *dev_p);
/linux-6.15/drivers/md/
H A Ddm-table.c337 int __ref dm_devt_from_path(const char *path, dev_t *dev_p) in dm_devt_from_path() argument
358 *dev_p = dev; in dm_devt_from_path()