Lines Matching +full:32 +full:mv
493 for (i = 0; i < 32; i++) { in ch_check_voltag()
532 memcpy(buffer,tag,32); in ch_set_voltag()
702 struct changer_move mv; in ch_ioctl() local
704 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
707 if (0 != ch_checkrange(ch, mv.cm_fromtype, mv.cm_fromunit) || in ch_ioctl()
708 0 != ch_checkrange(ch, mv.cm_totype, mv.cm_tounit )) { in ch_ioctl()
715 ch->firsts[mv.cm_fromtype] + mv.cm_fromunit, in ch_ioctl()
716 ch->firsts[mv.cm_totype] + mv.cm_tounit, in ch_ioctl()
717 mv.cm_flags & CM_INVERT); in ch_ioctl()
724 struct changer_exchange mv; in ch_ioctl() local
726 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
729 if (0 != ch_checkrange(ch, mv.ce_srctype, mv.ce_srcunit ) || in ch_ioctl()
730 0 != ch_checkrange(ch, mv.ce_fdsttype, mv.ce_fdstunit) || in ch_ioctl()
731 0 != ch_checkrange(ch, mv.ce_sdsttype, mv.ce_sdstunit)) { in ch_ioctl()
739 ch->firsts[mv.ce_srctype] + mv.ce_srcunit, in ch_ioctl()
740 ch->firsts[mv.ce_fdsttype] + mv.ce_fdstunit, in ch_ioctl()
741 ch->firsts[mv.ce_sdsttype] + mv.ce_sdstunit, in ch_ioctl()
742 mv.ce_flags & CE_INVERT1, mv.ce_flags & CE_INVERT2); in ch_ioctl()