Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755951AbbKYBLE (ORCPT ); Tue, 24 Nov 2015 20:11:04 -0500 Received: from mail-pa0-f43.google.com ([209.85.220.43]:36630 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754403AbbKYBK5 (ORCPT ); Tue, 24 Nov 2015 20:10:57 -0500 From: Jin Qian To: Greg Kroah-Hartman , Greg Hackmann , =?UTF-8?q?Alex=20Benn=C3=A9e?= , Joe Perches , Jason Hu , Peter Senna Tschudin , Yu Ning , Christoffer Dall , linux-kernel@vger.kernel.org Cc: Jin Qian Subject: [PATCH 8/8] goldfish: Enable ACPI-based enumeration for android pipe Date: Tue, 24 Nov 2015 17:10:12 -0800 Message-Id: <1448413812-24289-9-git-send-email-jinqian@android.com> X-Mailer: git-send-email 2.6.0.rc2.230.g3dd15c0 In-Reply-To: <1448413812-24289-1-git-send-email-jinqian@android.com> References: <1448413812-24289-1-git-send-email-jinqian@android.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1646 Lines: 52 From: Jason Hu Add ACPI binding to the android pipe driver Signed-off-by: Jason Hu (cherry picked from commit 044d26f395f8c45ada0ead21285ffe4628f05046) Signed-off-by: Jin Qian --- drivers/platform/goldfish/goldfish_pipe.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/platform/goldfish/goldfish_pipe.c b/drivers/platform/goldfish/goldfish_pipe.c index a473aca..55278af 100644 --- a/drivers/platform/goldfish/goldfish_pipe.c +++ b/drivers/platform/goldfish/goldfish_pipe.c @@ -59,6 +59,7 @@ #include #include #include +#include /* * IMPORTANT: The following constants must match the ones used and defined @@ -650,6 +651,12 @@ static int goldfish_pipe_remove(struct platform_device *pdev) return 0; } +static const struct acpi_device_id goldfish_pipe_acpi_match[] = { + { "GFSH0003", 0 }, + { }, +}; +MODULE_DEVICE_TABLE(acpi, goldfish_pipe_acpi_match); + static const struct of_device_id goldfish_pipe_of_match[] = { { .compatible = "generic,android-pipe", }, {}, @@ -663,6 +670,7 @@ static struct platform_driver goldfish_pipe = { .name = "goldfish_pipe", .owner = THIS_MODULE, .of_match_table = goldfish_pipe_of_match, + .acpi_match_table = ACPI_PTR(goldfish_pipe_acpi_match), } }; -- 2.6.0.rc2.230.g3dd15c0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/