Merge "soc: qcom: ipc_router_mhi_xprt: Handle error condition"

This commit is contained in:
Linux Build Service Account 2019-05-23 00:27:56 -07:00 committed by Gerrit - the friendly Code Review server
commit 01abac7367

View file

@ -1,4 +1,4 @@
/* Copyright (c) 2014-2018, The Linux Foundation. All rights reserved. /* Copyright (c) 2014-2019, The Linux Foundation. All rights reserved.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and * it under the terms of the GNU General Public License version 2 and
@ -876,6 +876,12 @@ static int ipc_router_mhi_config_init(
spin_lock_init(&mhi_xprtp->rx_addr_map_list_lock); spin_lock_init(&mhi_xprtp->rx_addr_map_list_lock);
rc = ipc_router_mhi_driver_register(mhi_xprtp, dev); rc = ipc_router_mhi_driver_register(mhi_xprtp, dev);
if (rc < 0) {
IPC_RTR_ERR("%s: mhi registration failed\n", __func__);
destroy_workqueue(mhi_xprtp->wq);
kfree(mhi_xprtp);
};
return rc; return rc;
} }