From patchwork Fri Nov 10 02:32:53 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10052299 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 78D646032D for ; Fri, 10 Nov 2017 02:34:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 645F82B28B for ; Fri, 10 Nov 2017 02:34:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5976A2B28F; Fri, 10 Nov 2017 02:34:11 +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 0D5232B28B for ; Fri, 10 Nov 2017 02:34:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755856AbdKJCd7 (ORCPT ); Thu, 9 Nov 2017 21:33:59 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:41702 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755729AbdKJCdD (ORCPT ); Thu, 9 Nov 2017 21:33:03 -0500 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id C9933607F7; Fri, 10 Nov 2017 02:33:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1510281182; bh=Efjmk10TXadKlvXGuwG3K6C54ZL7BfQgZLj19hJkYnI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KQusGVL19IL0ICVztSXVPH9VuNovm1PvOej3Lm6nOOq253Ry9gleafR0enkBUPtZg cEvyAJeRLEyo9PtVfHJRfs7aAhb1YSymHBjTlhW4u1QIQL3unZVmVdld0s0mdaEFpe XzK/dH6RHQYiDJ5dvGmxQzZPkAs1InQX1HG0Q3zo= Received: from drakthul.qualcomm.com (global_nat1_iad_fw.qualcomm.com [129.46.232.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: okaya@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id A2925607EB; Fri, 10 Nov 2017 02:33:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1510281182; bh=Efjmk10TXadKlvXGuwG3K6C54ZL7BfQgZLj19hJkYnI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KQusGVL19IL0ICVztSXVPH9VuNovm1PvOej3Lm6nOOq253Ry9gleafR0enkBUPtZg cEvyAJeRLEyo9PtVfHJRfs7aAhb1YSymHBjTlhW4u1QIQL3unZVmVdld0s0mdaEFpe XzK/dH6RHQYiDJ5dvGmxQzZPkAs1InQX1HG0Q3zo= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org A2925607EB Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=okaya@codeaurora.org From: Sinan Kaya To: dmaengine@vger.kernel.org, timur@codeaurora.org Cc: linux-arm-msm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, robin.murphy@arm.com, Sinan Kaya , linux-kernel@vger.kernel.org Subject: [PATCH V3 2/4] ACPI / bus: introduce acpi_device_get_match_data() function Date: Thu, 9 Nov 2017 21:32:53 -0500 Message-Id: <1510281175-27173-2-git-send-email-okaya@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1510281175-27173-1-git-send-email-okaya@codeaurora.org> References: <1510281175-27173-1-git-send-email-okaya@codeaurora.org> Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP OF has of_device_get_match_data() function to extract driver specific data structure. Add a similar function for ACPI. Signed-off-by: Sinan Kaya --- drivers/acpi/bus.c | 12 ++++++++++++ include/linux/acpi.h | 6 ++++++ 2 files changed, 18 insertions(+) diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 4d0979e..da29c10 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -785,6 +785,18 @@ const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids, } EXPORT_SYMBOL_GPL(acpi_match_device); +void *acpi_device_get_match_data(const struct device *dev) +{ + const struct acpi_device_id *match; + + match = acpi_match_device(dev->driver->acpi_match_table, dev); + if (!match) + return NULL; + + return (void *)match->driver_data; +} +EXPORT_SYMBOL_GPL(acpi_device_get_match_data); + int acpi_match_device_ids(struct acpi_device *device, const struct acpi_device_id *ids) { diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 502af53..62c85a5 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -584,6 +584,7 @@ extern int acpi_nvs_for_each_region(int (*func)(__u64, __u64, void *), const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids, const struct device *dev); +void *acpi_device_get_match_data(const struct device *dev); extern bool acpi_driver_match_device(struct device *dev, const struct device_driver *drv); int acpi_device_uevent_modalias(struct device *, struct kobj_uevent_env *); @@ -755,6 +756,11 @@ static inline const struct acpi_device_id *acpi_match_device( return NULL; } +static inline void *acpi_device_get_match_data(const struct device *dev) +{ + return NULL; +} + static inline bool acpi_driver_match_device(struct device *dev, const struct device_driver *drv) {