Lines Matching refs:vicap_rst_inf
445 struct rkmodule_vicap_reset_info *vicap_rst_inf; in max96714_compat_ioctl32() local
481 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in max96714_compat_ioctl32()
482 if (!vicap_rst_inf) { in max96714_compat_ioctl32()
487 ret = max96714_ioctl(sd, cmd, vicap_rst_inf); in max96714_compat_ioctl32()
489 ret = copy_to_user(up, vicap_rst_inf, sizeof(*vicap_rst_inf)); in max96714_compat_ioctl32()
493 kfree(vicap_rst_inf); in max96714_compat_ioctl32()
496 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in max96714_compat_ioctl32()
497 if (!vicap_rst_inf) { in max96714_compat_ioctl32()
502 ret = copy_from_user(vicap_rst_inf, up, sizeof(*vicap_rst_inf)); in max96714_compat_ioctl32()
504 ret = max96714_ioctl(sd, cmd, vicap_rst_inf); in max96714_compat_ioctl32()
507 kfree(vicap_rst_inf); in max96714_compat_ioctl32()