From patchwork Thu May 25 09:16:37 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Li X-Patchwork-Id: 13254995 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id F0814C7EE2F for ; Thu, 25 May 2023 09:17:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=7S5LUTqZxdSxtM6pHo/+l/NywIktR6TVZ7pelHZ/OAg=; b=uh2sqNY4sa/6IN Xv8fE+WwJiqL+hkkeoxWGsD2BhJAB6hnw39c0JI5mnUyKTC2ArMTucKkvcXdWnMm0FC0WyKMgCLW/ 3932TivXLz/a4SYynqbhL2AUW93moq5wUmMSAal5q/CqpTPYwa/CE3O1+5iEfz2Jn8JumaghguMOm ZGuBXQvPfSPBrKdfHeqC7VMTl4Amz185+NgXlomHdfF15kMTnqaomrdCKdchc5RtZM8YkOrRFy1X6 0aOoPsestro1M7SapwGWDhRO4ame9WA8/rkDTGietCTosrnvfUZLw6VSmFPuJmFYtd5Dje8K+c3w4 Q79gL6e2MKpcGb4bGKrQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q275W-00G767-0e; Thu, 25 May 2023 09:16:50 +0000 Received: from out30-130.freemail.mail.aliyun.com ([115.124.30.130]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q275T-00G73j-0P for linux-arm-kernel@lists.infradead.org; Thu, 25 May 2023 09:16:49 +0000 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R201e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046050;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=10;SR=0;TI=SMTPD_---0VjRf0H8_1685006198; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VjRf0H8_1685006198) by smtp.aliyun-inc.com; Thu, 25 May 2023 17:16:39 +0800 From: Yang Li To: agross@kernel.org Cc: andersson@kernel.org, okaya@kernel.org, konrad.dybcio@linaro.org, vkoul@kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org, Yang Li Subject: [PATCH -next] dmaengine: hidma: Fix cast to smaller integer type warning Date: Thu, 25 May 2023 17:16:37 +0800 Message-Id: <20230525091637.62315-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230525_021647_385534_09748913 X-CRM114-Status: UNSURE ( 8.33 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Fix the following warning: drivers/dma/qcom/hidma.c:748:8: warning: cast to smaller integer type 'enum hidma_cap' from 'const void *' Signed-off-by: Yang Li --- drivers/dma/qcom/hidma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/qcom/hidma.c b/drivers/dma/qcom/hidma.c index 344525c3a32f..0165e2fa7be4 100644 --- a/drivers/dma/qcom/hidma.c +++ b/drivers/dma/qcom/hidma.c @@ -745,7 +745,7 @@ static bool hidma_test_capability(struct device *dev, enum hidma_cap test_cap) { enum hidma_cap cap; - cap = (enum hidma_cap) device_get_match_data(dev); + cap = (unsigned long) device_get_match_data(dev); return cap ? ((cap & test_cap) > 0) : 0; }