From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5719FC43461 for ; Thu, 15 Apr 2021 09:38:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3983861158 for ; Thu, 15 Apr 2021 09:38:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231918AbhDOJij (ORCPT ); Thu, 15 Apr 2021 05:38:39 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:40244 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230260AbhDOJih (ORCPT ); Thu, 15 Apr 2021 05:38:37 -0400 Received: from mail-ed1-f69.google.com ([209.85.208.69]) by youngberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lWyRy-0005z6-2x for linux-kernel@vger.kernel.org; Thu, 15 Apr 2021 09:38:14 +0000 Received: by mail-ed1-f69.google.com with SMTP id i5-20020aa7dd050000b02903830cafa575so3446062edv.6 for ; Thu, 15 Apr 2021 02:38:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=l7z2ouZqcZvLyEOcdE7FnfhcpFO/282ITnfmb7UR/10=; b=RhC3hUjr46WIEsE55j0hitFlWJ4NcN6/teZpqJ3q1WgAeHKJL8fvDPu+gla4Ol/s03 KXULHhwhwQCAoeM+ZT27g+RB1DbEbKhbVFtO+7cJoREFm6MY9RoHKNRzfMUSQ9ySGIeM XPYiKWEX9s2wk9O0UJmExdAz0TUIPLRS2/BEZGwxWhGcr+p7+zTyupSlL3uC0pEJdr6X I8BCL8nshlrhldKdOG8+6OZXsV0e64R3Q/FsgHo33KNNADUTwt6/3+V9VFqTA0gE8OQC S/Nd7W/XcGDoJQyehtwcvw+LM+Ss2h+cQZmXV210MPc7J8haarvBkbD9gEIr+/wGJHpz OeTw== X-Gm-Message-State: AOAM530D2qU1LWZ+O20B3qaeYCtrgNGasptOMmGjAzwtR+UvRlH5hC35 5KPlfVNTVV1LBNYykNe9gWE/Q2+hKYLpfCOPDPRbj0c2rOgPYrzKt0uG79H941go8/Zwe720iWS hEGBToP5q7NfrxQ6llPNjUER4rdtrQMumHkhwyBJQqA== X-Received: by 2002:a05:6402:441:: with SMTP id p1mr3050354edw.298.1618479493843; Thu, 15 Apr 2021 02:38:13 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzjTWhXTydv5lD8MaRLQ1f9/d9f9dV/fzvHNm6rGHF/jEEPA7jl/HaK9McUQpiTlM0C77cbrw== X-Received: by 2002:a05:6402:441:: with SMTP id p1mr3050341edw.298.1618479493689; Thu, 15 Apr 2021 02:38:13 -0700 (PDT) Received: from localhost.localdomain (xdsl-188-155-192-147.adslplus.ch. [188.155.192.147]) by smtp.gmail.com with ESMTPSA id cq26sm1954088edb.60.2021.04.15.02.38.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 15 Apr 2021 02:38:13 -0700 (PDT) From: Krzysztof Kozlowski To: Krzysztof Kozlowski , linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Marek Szyprowski , Sylwester Nawrocki , Alim Akhtar , Andrzej Hajda Subject: [PATCH 1/2] i2c: s3c2410: simplify getting of_device_id match data Date: Thu, 15 Apr 2021 11:38:02 +0200 Message-Id: <20210415093803.162673-1-krzysztof.kozlowski@canonical.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use of_device_get_match_data() to make the code slightly smaller. Signed-off-by: Krzysztof Kozlowski --- drivers/i2c/busses/i2c-s3c2410.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 62a903fbe912..ab928613afba 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -156,12 +157,8 @@ MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); */ static inline kernel_ulong_t s3c24xx_get_device_quirks(struct platform_device *pdev) { - if (pdev->dev.of_node) { - const struct of_device_id *match; - - match = of_match_node(s3c24xx_i2c_match, pdev->dev.of_node); - return (kernel_ulong_t)match->data; - } + if (pdev->dev.of_node) + return (kernel_ulong_t)of_device_get_match_data(&pdev->dev); return platform_get_device_id(pdev)->driver_data; } -- 2.25.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A2BD9C433ED for ; Thu, 15 Apr 2021 09:41:06 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1DF1B6117A for ; Thu, 15 Apr 2021 09:41:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1DF1B6117A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=canonical.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; 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=+bQbrx2yhxcKN9QxxQSRWFX3yCe+eu1Gx1H/TKbH8qY=; b=EA5Vfx2WksaEqSv6may9oBP+bn kdey1f92wrzoQsZMAEnJk+/bq1sn6gt7r6jtSWdqzGdFadLkRpwnbrhGXwqCqJym1PNdYuvy2UyqE E1tIx4F8gJ2mKR+BzyWEd4YauAU0VG+Y/5LToJSwSFP6aQPnXZE8wV9Zm9TURYvAgKZ/nPjmnzCcK QjWvREkH6Hht9S/NnURqh8FeMPAzg1TcJTxoxm7P6POYm9r4T0W9pguFvMxt5Q0myfEudbZZykeit oiDOxmXaexSnXKivYdWEXFynhfxtapEPUfJBwBOafMylGmpMfqKNQcXapJSxOrqjX0lqoKW6MAzj3 l0LC+sOw==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lWySs-00FZMy-BA; Thu, 15 Apr 2021 09:39:10 +0000 Received: from bombadil.infradead.org ([2607:7c80:54:e::133]) by desiato.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lWyS3-00FYzE-Ir for linux-arm-kernel@desiato.infradead.org; Thu, 15 Apr 2021 09:38:20 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=l7z2ouZqcZvLyEOcdE7FnfhcpFO/282ITnfmb7UR/10=; b=jMcCoC7SWHpnqT8p9/Gw4Z7bfg 1d9yyTNDdy+uQ/wK7+sZmbomsUOXUxPqhymhH9KBXdVeoqdVUX+BIPlbDXj0GOsNY3XB76UbCdfIj nY8RVVw9Awj7I69i3yQj963AKxheUYXigEYYsqfZdoQ3shdGu9v5Xq3l5x8WlfUj3GgEr14nuUTIG vj9HOJ+gHDl/rz6djkDSM4YoJEoUllreOlHMcN01xXXZtmHDmuZO+pKkyV5Nr3fzT/1ydHy/xCtEh 04PmGKKNLJDcGcZqQTVTUjNSE4mtczOnSssCMFy9ins2uIlZnq/sM/jvM0hLFChp1KrKuo8EktJ1J wRpwn5uQ==; Received: from youngberry.canonical.com ([91.189.89.112]) by bombadil.infradead.org with esmtps (Exim 4.94 #2 (Red Hat Linux)) id 1lWyS0-008QvD-Uc for linux-arm-kernel@lists.infradead.org; Thu, 15 Apr 2021 09:38:18 +0000 Received: from mail-ed1-f72.google.com ([209.85.208.72]) by youngberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lWyRy-0005z9-3g for linux-arm-kernel@lists.infradead.org; Thu, 15 Apr 2021 09:38:14 +0000 Received: by mail-ed1-f72.google.com with SMTP id f9-20020a50fe090000b02903839889635cso2910918edt.14 for ; Thu, 15 Apr 2021 02:38:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=l7z2ouZqcZvLyEOcdE7FnfhcpFO/282ITnfmb7UR/10=; b=lAaBnr4st/aBpDYbmYDFyEPL5qBTtK0vZvzFixgXl5kKKM/Ruub0sdPFvfNKorKnRI o91w1tnTjey5mmbMwnKoxkTMnFVzMCoHbWwFn7MgjgzP2BNpTgy1o2LkVJFs6epF0TpR V4cUx5A7pVTYRJv09PT5V1f6sQdMixvWKQtygkR83bYH7fZvvkdC/ZBucgQ+2PT7SSeN 8Q4v81usLgTWhvduWO9gnRlG0SGhlGCKNbcaZ7IoTATJS4jkbr+twcvbJEf4qOneXyKd ntzT5G0vrERk9axB+nZbaktCpkm7P3pFB4ENsm2H2Sg6jlb95ZMJo6GJ5iVsF3AHZPP6 EYfg== X-Gm-Message-State: AOAM533/IHMFcizzxCK4zrSpp/xiB6CFheUx5aEf6JH/YmgVUtIndAN7 1tW8F14VpV5lQkfmyIOK+l9L6Sxcv4Xyml09RKxf95q+FaBHecdkzZ1HUiUhYQe6ISUW0iATg7J 38uh7Zy9uMey+CiikUtbqNnkrKIf1VwQ/VHmVJGuE8IqDtK1hFo4/ X-Received: by 2002:a05:6402:441:: with SMTP id p1mr3050358edw.298.1618479493846; Thu, 15 Apr 2021 02:38:13 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzjTWhXTydv5lD8MaRLQ1f9/d9f9dV/fzvHNm6rGHF/jEEPA7jl/HaK9McUQpiTlM0C77cbrw== X-Received: by 2002:a05:6402:441:: with SMTP id p1mr3050341edw.298.1618479493689; Thu, 15 Apr 2021 02:38:13 -0700 (PDT) Received: from localhost.localdomain (xdsl-188-155-192-147.adslplus.ch. [188.155.192.147]) by smtp.gmail.com with ESMTPSA id cq26sm1954088edb.60.2021.04.15.02.38.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 15 Apr 2021 02:38:13 -0700 (PDT) From: Krzysztof Kozlowski To: Krzysztof Kozlowski , linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Marek Szyprowski , Sylwester Nawrocki , Alim Akhtar , Andrzej Hajda Subject: [PATCH 1/2] i2c: s3c2410: simplify getting of_device_id match data Date: Thu, 15 Apr 2021 11:38:02 +0200 Message-Id: <20210415093803.162673-1-krzysztof.kozlowski@canonical.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210415_023817_132926_0B1A4531 X-CRM114-Status: GOOD ( 12.18 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Use of_device_get_match_data() to make the code slightly smaller. Signed-off-by: Krzysztof Kozlowski --- drivers/i2c/busses/i2c-s3c2410.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 62a903fbe912..ab928613afba 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -156,12 +157,8 @@ MODULE_DEVICE_TABLE(of, s3c24xx_i2c_match); */ static inline kernel_ulong_t s3c24xx_get_device_quirks(struct platform_device *pdev) { - if (pdev->dev.of_node) { - const struct of_device_id *match; - - match = of_match_node(s3c24xx_i2c_match, pdev->dev.of_node); - return (kernel_ulong_t)match->data; - } + if (pdev->dev.of_node) + return (kernel_ulong_t)of_device_get_match_data(&pdev->dev); return platform_get_device_id(pdev)->driver_data; } -- 2.25.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel