staging: unisys: visorbus: remove POSTCODE in create_bus_instance

Remove postcodes from create_bus_instance. If there is an error log
it with dev_err.

Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
David Kershner 2017-04-18 16:55:11 -04:00 committed by Greg Kroah-Hartman
parent 402a343a24
commit 450333f10a
1 changed files with 2 additions and 6 deletions

View File

@ -995,8 +995,6 @@ create_bus_instance(struct visor_device *dev)
int err; int err;
struct spar_vbus_headerinfo *hdr_info; struct spar_vbus_headerinfo *hdr_info;
POSTCODE_LINUX(BUS_CREATE_ENTRY_PC, 0, 0, DIAG_SEVERITY_PRINT);
hdr_info = kzalloc(sizeof(*hdr_info), GFP_KERNEL); hdr_info = kzalloc(sizeof(*hdr_info), GFP_KERNEL);
if (!hdr_info) if (!hdr_info)
return -ENOMEM; return -ENOMEM;
@ -1019,11 +1017,8 @@ create_bus_instance(struct visor_device *dev)
goto err_debugfs_dir; goto err_debugfs_dir;
err = device_register(&dev->device); err = device_register(&dev->device);
if (err < 0) { if (err < 0)
POSTCODE_LINUX(DEVICE_CREATE_FAILURE_PC, 0, id,
DIAG_SEVERITY_ERR);
goto err_debugfs_dir; goto err_debugfs_dir;
}
list_add_tail(&dev->list_all, &list_all_bus_instances); list_add_tail(&dev->list_all, &list_all_bus_instances);
@ -1038,6 +1033,7 @@ create_bus_instance(struct visor_device *dev)
err_debugfs_dir: err_debugfs_dir:
debugfs_remove_recursive(dev->debugfs_dir); debugfs_remove_recursive(dev->debugfs_dir);
kfree(hdr_info); kfree(hdr_info);
dev_err(&dev->device, "create_bus_instance failed: %d\n", err);
return err; return err;
} }