Lines Matching refs:vicap_rst_inf
644 struct rkmodule_vicap_reset_info *vicap_rst_inf; in thcv244_compat_ioctl32() local
679 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in thcv244_compat_ioctl32()
680 if (!vicap_rst_inf) { in thcv244_compat_ioctl32()
685 ret = thcv244_ioctl(sd, cmd, vicap_rst_inf); in thcv244_compat_ioctl32()
687 ret = copy_to_user(up, vicap_rst_inf, sizeof(*vicap_rst_inf)); in thcv244_compat_ioctl32()
691 kfree(vicap_rst_inf); in thcv244_compat_ioctl32()
694 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in thcv244_compat_ioctl32()
695 if (!vicap_rst_inf) { in thcv244_compat_ioctl32()
700 ret = copy_from_user(vicap_rst_inf, up, sizeof(*vicap_rst_inf)); in thcv244_compat_ioctl32()
702 ret = thcv244_ioctl(sd, cmd, vicap_rst_inf); in thcv244_compat_ioctl32()
705 kfree(vicap_rst_inf); in thcv244_compat_ioctl32()