Lines Matching refs:vicap_rst_inf
1277 struct rkmodule_vicap_reset_info *vicap_rst_inf; in max96712_compat_ioctl32() local
1314 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in max96712_compat_ioctl32()
1315 if (!vicap_rst_inf) { in max96712_compat_ioctl32()
1320 ret = max96712_ioctl(sd, cmd, vicap_rst_inf); in max96712_compat_ioctl32()
1322 ret = copy_to_user(up, vicap_rst_inf, in max96712_compat_ioctl32()
1323 sizeof(*vicap_rst_inf)); in max96712_compat_ioctl32()
1327 kfree(vicap_rst_inf); in max96712_compat_ioctl32()
1330 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in max96712_compat_ioctl32()
1331 if (!vicap_rst_inf) { in max96712_compat_ioctl32()
1336 ret = copy_from_user(vicap_rst_inf, up, sizeof(*vicap_rst_inf)); in max96712_compat_ioctl32()
1338 ret = max96712_ioctl(sd, cmd, vicap_rst_inf); in max96712_compat_ioctl32()
1341 kfree(vicap_rst_inf); in max96712_compat_ioctl32()