From patchwork Tue Oct 18 14:28:09 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vivek Gautam X-Patchwork-Id: 9382241 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 649F560839 for ; Tue, 18 Oct 2016 14:33:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 55F9428AFA for ; Tue, 18 Oct 2016 14:33:07 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4A74228C47; Tue, 18 Oct 2016 14:33:07 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 162F928AFA for ; Tue, 18 Oct 2016 14:33:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761702AbcJRO3E (ORCPT ); Tue, 18 Oct 2016 10:29:04 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:41818 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761620AbcJRO25 (ORCPT ); Tue, 18 Oct 2016 10:28:57 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id C92F061813; Tue, 18 Oct 2016 14:28:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1476800936; bh=dMswhQl2hez1ZjQj0g24/u7GOk/0BdXcqhaOhtIFcns=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jya98ZDQVpSWgHBMRDSRwSQ0wxuDPzphc484t2/qXqIV1qZZXungAPE3pXfZ13aHN vHnYDuADug/KhJyy2jQw596eXOSeERm+ijHEHhiBcWhocNkFko7emAT47mtALIakTf 8qAy3IvyjfJ4lQNJx+srCUxzz2+zuw7kn9EpMr7A= Received: from blr-ubuntu-41.ap.qualcomm.com (unknown [202.46.23.61]) (using TLSv1.1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: vivek.gautam@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 67B3561822; Tue, 18 Oct 2016 14:28:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1476800936; bh=dMswhQl2hez1ZjQj0g24/u7GOk/0BdXcqhaOhtIFcns=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jya98ZDQVpSWgHBMRDSRwSQ0wxuDPzphc484t2/qXqIV1qZZXungAPE3pXfZ13aHN vHnYDuADug/KhJyy2jQw596eXOSeERm+ijHEHhiBcWhocNkFko7emAT47mtALIakTf 8qAy3IvyjfJ4lQNJx+srCUxzz2+zuw7kn9EpMr7A= DMARC-Filter: OpenDMARC Filter v1.3.1 smtp.codeaurora.org 67B3561822 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=pass smtp.mailfrom=vivek.gautam@codeaurora.org From: Vivek Gautam To: kishon@ti.com, jejb@linux.vnet.ibm.com, vinholikatti@gmail.com, martin.petersen@oracle.com, linux-kernel@vger.kernel.org Cc: subhashj@codeaurora.org, linux-scsi@vger.kernel.org, linux-arm-msm@vger.kernel.org, Vivek Gautam Subject: [PATCH v2 02/10] phy: qcom-ufs: Remove unnecessary BUG_ON Date: Tue, 18 Oct 2016 19:58:09 +0530 Message-Id: <1476800897-19898-3-git-send-email-vivek.gautam@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1476800897-19898-1-git-send-email-vivek.gautam@codeaurora.org> References: <1476800897-19898-1-git-send-email-vivek.gautam@codeaurora.org> Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP BUG_ON() are not preferred in the driver, plus the variable on which BUG_ON is asserted is already checked in the code before passing. Signed-off-by: Vivek Gautam Reviewed-by: Subhash Jadavani --- No change since v1. drivers/phy/phy-qcom-ufs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/phy/phy-qcom-ufs.c b/drivers/phy/phy-qcom-ufs.c index 183ec04..805c91d 100644 --- a/drivers/phy/phy-qcom-ufs.c +++ b/drivers/phy/phy-qcom-ufs.c @@ -335,8 +335,6 @@ int ufs_qcom_phy_cfg_vreg(struct phy *phy, struct ufs_qcom_phy *ufs_qcom_phy = get_ufs_qcom_phy(phy); struct device *dev = ufs_qcom_phy->dev; - BUG_ON(!vreg); - if (regulator_count_voltages(reg) > 0) { min_uV = on ? vreg->min_uV : 0; ret = regulator_set_voltage(reg, min_uV, vreg->max_uV);