Merge "mhi: controller: Fix warning in mhi_qcom.c"

This commit is contained in:
qctecmdr Service 2019-01-14 13:22:58 -08:00 committed by Gerrit - the friendly Code Review server
commit e03519432e

View file

@ -607,7 +607,8 @@ static struct mhi_controller *mhi_register_controller(struct pci_dev *pci_dev)
mhi_cntrl->fw_image = firmware_info->fw_image;
mhi_cntrl->edl_image = firmware_info->edl_image;
sysfs_create_group(&mhi_cntrl->mhi_dev->dev.kobj, &mhi_qcom_group);
if (sysfs_create_group(&mhi_cntrl->mhi_dev->dev.kobj, &mhi_qcom_group))
MHI_ERR("Error while creating the sysfs group\n");
return mhi_cntrl;