media: v4l2-ctls-core.c: kvmalloc_array -> kvcalloc
[linux-2.6-microblaze.git] / drivers / media / v4l2-core / v4l2-ctrls-core.c
index 8968cec..949c188 100644 (file)
@@ -1140,9 +1140,8 @@ int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
        INIT_LIST_HEAD(&hdl->ctrls);
        INIT_LIST_HEAD(&hdl->ctrl_refs);
        hdl->nr_of_buckets = 1 + nr_of_controls_hint / 8;
-       hdl->buckets = kvmalloc_array(hdl->nr_of_buckets,
-                                     sizeof(hdl->buckets[0]),
-                                     GFP_KERNEL | __GFP_ZERO);
+       hdl->buckets = kvcalloc(hdl->nr_of_buckets, sizeof(hdl->buckets[0]),
+                               GFP_KERNEL);
        hdl->error = hdl->buckets ? 0 : -ENOMEM;
        v4l2_ctrl_handler_init_request(hdl);
        return hdl->error;