Lines Matching refs:chp_idx
469 * @chp_idx: index of the channel path
475 int chp_idx)
482 chpid.id = sch->schib.pmcw.chpid[chp_idx];
489 * @chp_idx: index of the channel path
494 u8 *ccw_device_get_util_str(struct ccw_device *cdev, int chp_idx)
502 chpid.id = sch->schib.pmcw.chpid[chp_idx];
771 * @chp_idx: Index of the channel path
774 int ccw_device_get_chpid(struct ccw_device *cdev, int chp_idx, u8 *chpid)
779 if ((chp_idx < 0) || (chp_idx > 7))
781 mask = 0x80 >> chp_idx;
785 *chpid = sch->schib.pmcw.chpid[chp_idx];
793 * @chp_idx: Index of the channel path
796 int ccw_device_get_chid(struct ccw_device *cdev, int chp_idx, u16 *chid)
803 rc = ccw_device_get_chpid(cdev, chp_idx, &cssid_chpid.id);