From patchwork Fri Feb 26 18:28:25 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 387916 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, 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 940EAC433E0 for ; Fri, 26 Feb 2021 18:32:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6163C64F5E for ; Fri, 26 Feb 2021 18:32:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230228AbhBZScm (ORCPT ); Fri, 26 Feb 2021 13:32:42 -0500 Received: from mga11.intel.com ([192.55.52.93]:49620 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229990AbhBZSck (ORCPT ); Fri, 26 Feb 2021 13:32:40 -0500 IronPort-SDR: 2Q0wjAGGDLqEqyykHnEcPM78q+v+P5oIvXIWzIi31g8grxd22UPfNKLag6Yg2ND+wXnKHwKjx6 P0HydtYjYukQ== X-IronPort-AV: E=McAfee;i="6000,8403,9907"; a="182539841" X-IronPort-AV: E=Sophos;i="5.81,209,1610438400"; d="scan'208";a="182539841" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Feb 2021 10:30:53 -0800 IronPort-SDR: FfdUG4pIQYKJ65VNmNYBSLA2/a0UhKX4vovRLtxw4abe6ymkgA1eowstpLIIIVO/Lpa6sknvWB RwsGneSdzJbQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,209,1610438400"; d="scan'208";a="598522234" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga005.fm.intel.com with ESMTP; 26 Feb 2021 10:30:51 -0800 Received: by black.fi.intel.com (Postfix, from userid 1003) id 1B2CD17E; Fri, 26 Feb 2021 20:28:29 +0200 (EET) From: Andy Shevchenko To: Douglas Anderson , Andy Shevchenko , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Jiri Kosina , Benjamin Tissoires Subject: [PATCH v1 1/1] HID: i2c-hid: acpi: Drop redundant ACPI_PTR() Date: Fri, 26 Feb 2021 20:28:25 +0200 Message-Id: <20210226182825.11394-1-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.30.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org The driver depends on ACPI, ACPI_PTR() resolution is always the same. Otherwise a compiler may produce a warning. That said, the rule of thumb either ugly ifdeffery with ACPI_PTR or none should be used in a driver. Signed-off-by: Andy Shevchenko --- drivers/hid/i2c-hid/i2c-hid-acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hid/i2c-hid/i2c-hid-acpi.c b/drivers/hid/i2c-hid/i2c-hid-acpi.c index 00bbd218f1e8..d35ff3f16a5b 100644 --- a/drivers/hid/i2c-hid/i2c-hid-acpi.c +++ b/drivers/hid/i2c-hid/i2c-hid-acpi.c @@ -131,7 +131,7 @@ static struct i2c_driver i2c_hid_acpi_driver = { .name = "i2c_hid_acpi", .pm = &i2c_hid_core_pm, .probe_type = PROBE_PREFER_ASYNCHRONOUS, - .acpi_match_table = ACPI_PTR(i2c_hid_acpi_match), + .acpi_match_table = i2c_hid_acpi_match, }, .probe = i2c_hid_acpi_probe,