Lines Matching refs:vicap_rst_inf
1299 struct rkmodule_vicap_reset_info *vicap_rst_inf; in nvp6188_compat_ioctl32() local
1364 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in nvp6188_compat_ioctl32()
1365 if (!vicap_rst_inf) { in nvp6188_compat_ioctl32()
1370 ret = nvp6188_ioctl(sd, cmd, vicap_rst_inf); in nvp6188_compat_ioctl32()
1372 ret = copy_to_user(up, vicap_rst_inf, sizeof(*vicap_rst_inf)); in nvp6188_compat_ioctl32()
1376 kfree(vicap_rst_inf); in nvp6188_compat_ioctl32()
1379 vicap_rst_inf = kzalloc(sizeof(*vicap_rst_inf), GFP_KERNEL); in nvp6188_compat_ioctl32()
1380 if (!vicap_rst_inf) { in nvp6188_compat_ioctl32()
1385 ret = copy_from_user(vicap_rst_inf, up, sizeof(*vicap_rst_inf)); in nvp6188_compat_ioctl32()
1387 ret = nvp6188_ioctl(sd, cmd, vicap_rst_inf); in nvp6188_compat_ioctl32()
1390 kfree(vicap_rst_inf); in nvp6188_compat_ioctl32()