From patchwork Thu Feb 25 08:20:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Henningsson X-Patchwork-Id: 8420441 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 66AE69F372 for ; Thu, 25 Feb 2016 08:21:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AD08A20274 for ; Thu, 25 Feb 2016 08:21:11 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id A69572022A for ; Thu, 25 Feb 2016 08:21:10 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id C39ED261534; Thu, 25 Feb 2016 09:21:09 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 4D9AC26150C; Thu, 25 Feb 2016 09:21:08 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 1210A261515; Thu, 25 Feb 2016 09:21:06 +0100 (CET) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by alsa0.perex.cz (Postfix) with ESMTP id 82F77261507 for ; Thu, 25 Feb 2016 09:20:59 +0100 (CET) Received: from c83-251-162-102.bredband.comhem.se ([83.251.162.102] helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1aYrAR-0007FM-7r; Thu, 25 Feb 2016 08:20:59 +0000 From: David Henningsson To: tiwai@suse.de, alsa-devel@alsa-project.org Date: Thu, 25 Feb 2016 09:20:57 +0100 Message-Id: <1456388457-4957-1-git-send-email-david.henningsson@canonical.com> X-Mailer: git-send-email 1.9.1 Cc: David Henningsson Subject: [alsa-devel] [PATCH] hda-emu: add acpi_dev_present X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: David Henningsson --- include/acpi/acpi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/acpi/acpi.h b/include/acpi/acpi.h index d7d6cb9..9fd9c86 100644 --- a/include/acpi/acpi.h +++ b/include/acpi/acpi.h @@ -33,4 +33,6 @@ acpi_get_devices(const char *HID, return user_function(NULL, 0, context, NULL); } +static inline bool acpi_dev_present(const char *hid) { return true; } + #endif /* __ACPI_H__ */