static const struct devlink_region_ops region_cr_space_ops = {
        .name = region_cr_space_str,
+       .destructor = &kvfree,
 };
 
 static const struct devlink_region_ops region_fw_health_ops = {
        .name = region_fw_health_str,
+       .destructor = &kvfree,
 };
 
 /* Set to true in case cr enable bit was set to true before crdump */
                                        readl(cr_space + offset);
 
                err = devlink_region_snapshot_create(crdump->region_crspace,
-                                                    crspace_data, id, &kvfree);
+                                                    crspace_data, id);
                if (err) {
                        kvfree(crspace_data);
                        mlx4_warn(dev, "crdump: devlink create %s snapshot id %d err %d\n",
                                        readl(health_buf_start + offset);
 
                err = devlink_region_snapshot_create(crdump->region_fw_health,
-                                                    health_data, id, &kvfree);
+                                                    health_data, id);
                if (err) {
                        kvfree(health_data);
                        mlx4_warn(dev, "crdump: devlink create %s snapshot id %d err %d\n",
 
 
        id = devlink_region_snapshot_id_get(priv_to_devlink(nsim_dev));
        err = devlink_region_snapshot_create(nsim_dev->dummy_region,
-                                            dummy_data, id, kfree);
+                                            dummy_data, id);
        if (err) {
                pr_err("Failed to create region snapshot\n");
                kfree(dummy_data);
 
 static const struct devlink_region_ops dummy_region_ops = {
        .name = "dummy",
+       .destructor = &kfree,
 };
 
 static int nsim_dev_dummy_region_init(struct nsim_dev *nsim_dev,
 
 struct devlink_region;
 struct devlink_info_req;
 
-typedef void devlink_snapshot_data_dest_t(const void *data);
-
 /**
  * struct devlink_region_ops - Region operations
  * @name: region name
+ * @destructor: callback used to free snapshot memory when deleting
  */
 struct devlink_region_ops {
        const char *name;
+       void (*destructor)(const void *data);
 };
 
 struct devlink_fmsg;
 void devlink_region_destroy(struct devlink_region *region);
 u32 devlink_region_snapshot_id_get(struct devlink *devlink);
 int devlink_region_snapshot_create(struct devlink_region *region,
-                                  u8 *data, u32 snapshot_id,
-                                  devlink_snapshot_data_dest_t *data_destructor);
+                                  u8 *data, u32 snapshot_id);
 int devlink_info_serial_number_put(struct devlink_info_req *req,
                                   const char *sn);
 int devlink_info_driver_name_put(struct devlink_info_req *req,
 
 struct devlink_snapshot {
        struct list_head list;
        struct devlink_region *region;
-       devlink_snapshot_data_dest_t *data_destructor;
        u8 *data;
        u32 id;
 };
        devlink_nl_region_notify(region, snapshot, DEVLINK_CMD_REGION_DEL);
        region->cur_snapshots--;
        list_del(&snapshot->list);
-       (*snapshot->data_destructor)(snapshot->data);
+       region->ops->destructor(snapshot->data);
        kfree(snapshot);
 }
 
        struct devlink_region *region;
        int err = 0;
 
+       if (WARN_ON(!ops) || WARN_ON(!ops->destructor))
+               return ERR_PTR(-EINVAL);
+
        mutex_lock(&devlink->lock);
 
        if (devlink_region_get_by_name(devlink, ops->name)) {
  *     @region: devlink region of the snapshot
  *     @data: snapshot data
  *     @snapshot_id: snapshot id to be created
- *     @data_destructor: pointer to destructor function to free data
  */
 int devlink_region_snapshot_create(struct devlink_region *region,
-                                  u8 *data, u32 snapshot_id,
-                                  devlink_snapshot_data_dest_t *data_destructor)
+                                  u8 *data, u32 snapshot_id)
 {
        struct devlink *devlink = region->devlink;
        struct devlink_snapshot *snapshot;
        snapshot->id = snapshot_id;
        snapshot->region = region;
        snapshot->data = data;
-       snapshot->data_destructor = data_destructor;
 
        list_add_tail(&snapshot->list, ®ion->snapshot_list);