Home
last modified time | relevance | path

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

/linux/drivers/gpu/drm/kmb/
H A Dkmb_drv.h77 static inline void kmb_write_lcd(struct kmb_drm_private *dev_p, in kmb_write_lcd() argument
80 writel(value, (dev_p->lcd_mmio + reg)); in kmb_write_lcd()
83 static inline u32 kmb_read_lcd(struct kmb_drm_private *dev_p, unsigned int reg) in kmb_read_lcd() argument
85 return readl(dev_p->lcd_mmio + reg); in kmb_read_lcd()
88 static inline void kmb_set_bitmask_lcd(struct kmb_drm_private *dev_p, in kmb_set_bitmask_lcd() argument
91 u32 reg_val = kmb_read_lcd(dev_p, reg); in kmb_set_bitmask_lcd()
93 kmb_write_lcd(dev_p, reg, (reg_val | mask)); in kmb_set_bitmask_lcd()
96 static inline void kmb_clr_bitmask_lcd(struct kmb_drm_private *dev_p, in kmb_clr_bitmask_lcd() argument
99 u32 reg_val = kmb_read_lcd(dev_p, reg); in kmb_clr_bitmask_lcd()
101 kmb_write_lcd(dev_p, reg, (reg_val & (~mask))); in kmb_clr_bitmask_lcd()
/linux/drivers/net/ethernet/intel/ice/
H A Dice_common.c2448 ice_parse_valid_functions_cap(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, in ice_parse_valid_functions_cap() argument
2453 dev_p->num_funcs = hweight32(number); in ice_parse_valid_functions_cap()
2455 dev_p->num_funcs); in ice_parse_valid_functions_cap()
2467 ice_parse_vf_dev_caps(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, in ice_parse_vf_dev_caps() argument
2472 dev_p->num_vfs_exposed = number; in ice_parse_vf_dev_caps()
2474 dev_p->num_vfs_exposed); in ice_parse_vf_dev_caps()
2486 ice_parse_vsi_dev_caps(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, in ice_parse_vsi_dev_caps() argument
2491 dev_p->num_vsi_allocd_to_host = number; in ice_parse_vsi_dev_caps()
2493 dev_p->num_vsi_allocd_to_host); in ice_parse_vsi_dev_caps()
2505 ice_parse_1588_dev_caps(struct ice_hw *hw, struct ice_hw_dev_caps *dev_p, in ice_parse_1588_dev_caps() argument
[all …]
/linux/sound/core/
H A Dinit.c122 * @dev_p: pointer to store the allocated device
127 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/include/sound/
H A Dcore.h242 int snd_device_alloc(struct device **dev_p, struct snd_card *card);
/linux/include/linux/
H A Ddevice-mapper.h185 int dm_devt_from_path(const char *path, dev_t *dev_p);
/linux/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()