Lines Matching refs:chpd
790 struct chsc_cpd_info *chpd;
793 chpd = kzalloc(sizeof(*chpd), GFP_KERNEL);
795 if (!scpd_area || !chpd) {
799 if (copy_from_user(chpd, user_chpd, sizeof(*chpd))) {
803 ret = chsc_determine_channel_path_desc(chpd->chpid, chpd->fmt,
804 chpd->rfmt, chpd->c, chpd->m,
808 memcpy(&chpd->chpdb, &scpd_area->response, scpd_area->response.length);
809 if (copy_to_user(user_chpd, chpd, sizeof(*chpd)))
812 kfree(chpd);