From patchwork Sat Dec 2 04:27:39 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10088501 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 ED85C60595 for ; Sat, 2 Dec 2017 04:29:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 80794201BC for ; Sat, 2 Dec 2017 04:29:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7430226CFF; Sat, 2 Dec 2017 04:29:59 +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=unavailable 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 26A99201BC for ; Sat, 2 Dec 2017 04:29:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751613AbdLBE1z (ORCPT ); Fri, 1 Dec 2017 23:27:55 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:40364 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751481AbdLBE1x (ORCPT ); Fri, 1 Dec 2017 23:27:53 -0500 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 4E6F260818; Sat, 2 Dec 2017 04:27:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1512188873; bh=dYJVs+UiyNbDcI6Agh/jyqqfa8rhZUSdNxAPQM8DQQU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=A6jeujqR6FlI6AlAc6k4KhubyW81DHDHCajv8aH6/m1E2Zq9969NElycogUD2ysKD CaOfI75BPUmvrfIUPUErLacUl2aY66NBtqUqd0yI4wJHZ2ix2K3IjOnaJTBM1e/JQm bUGORxxAF+HyXTZZwaKmu+cAqrpYmCRlQAXJoKRk= 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 B446A60818; Sat, 2 Dec 2017 04:27:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1512188872; bh=dYJVs+UiyNbDcI6Agh/jyqqfa8rhZUSdNxAPQM8DQQU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VBBTnZuaNaXcMPAceSwhyz/+Q+vXE0vWFzq8Rbmafs0NkhKFbfswA4ChgSMLB8rig 8CNcxHbKmu0e8M86lK2oQ/nXm7qztna6eGb2m/zqe9fO1nc+mzLLvdWmMv3sH3aaEc 7ewRiKxPpJPJdPGsXQHprhqgNEcY/+fdvNcTtASI= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org B446A60818 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, devicetree@vger.kernel.org Cc: linux-arm-msm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Sinan Kaya , "Rafael J. Wysocki" , Len Brown , linux-acpi@vger.kernel.org (open list:ACPI), linux-kernel@vger.kernel.org (open list) Subject: [PATCH V5 2/7] ACPI / bus: Introduce acpi_get_match_data() function Date: Fri, 1 Dec 2017 23:27:39 -0500 Message-Id: <1512188864-773-3-git-send-email-okaya@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1512188864-773-1-git-send-email-okaya@codeaurora.org> References: <1512188864-773-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 | 13 +++++++++++++ include/linux/acpi.h | 8 ++++++++ 2 files changed, 21 insertions(+) diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 4d0979e..05d8d9a 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -785,6 +785,19 @@ const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids, } EXPORT_SYMBOL_GPL(acpi_match_device); +void *acpi_get_match_data(struct acpi_device *device, + const struct acpi_device_id *ids) +{ + const struct acpi_device_id *match; + + match = __acpi_match_device(device, ids, NULL); + if (!match) + return NULL; + + return (void *)match->driver_data; +} +EXPORT_SYMBOL_GPL(acpi_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..196bc7a 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -584,6 +584,8 @@ 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_get_match_data(struct acpi_device *device, + const struct acpi_device_id *ids); 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 +757,12 @@ static inline const struct acpi_device_id *acpi_match_device( return NULL; } +static inline void *acpi_get_match_data(struct acpi_device *device, + const struct acpi_device_id *ids) +{ + return NULL; +} + static inline bool acpi_driver_match_device(struct device *dev, const struct device_driver *drv) {