Lines Matching refs:vicap_rst_inf
1288 struct rkmodule_vicap_reset_info *vicap_rst_inf; in max96722_compat_ioctl32() local
1325 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in max96722_compat_ioctl32()
1326 if (!vicap_rst_inf) { in max96722_compat_ioctl32()
1331 ret = max96722_ioctl(sd, cmd, vicap_rst_inf); in max96722_compat_ioctl32()
1333 ret = copy_to_user(up, vicap_rst_inf, in max96722_compat_ioctl32()
1334 sizeof(*vicap_rst_inf)); in max96722_compat_ioctl32()
1338 kfree(vicap_rst_inf); in max96722_compat_ioctl32()
1341 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in max96722_compat_ioctl32()
1342 if (!vicap_rst_inf) { in max96722_compat_ioctl32()
1347 ret = copy_from_user(vicap_rst_inf, up, sizeof(*vicap_rst_inf)); in max96722_compat_ioctl32()
1349 ret = max96722_ioctl(sd, cmd, vicap_rst_inf); in max96722_compat_ioctl32()
1352 kfree(vicap_rst_inf); in max96722_compat_ioctl32()