From patchwork Fri Jan 1 21:52:15 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukas Wunner X-Patchwork-Id: 7940071 X-Patchwork-Delegate: rjw@sisk.pl Return-Path: X-Original-To: patchwork-linux-acpi@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 8825A9F387 for ; Fri, 1 Jan 2016 22:02:08 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A6BF7204EC for ; Fri, 1 Jan 2016 22:02:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 739F1203F7 for ; Fri, 1 Jan 2016 22:02:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752052AbcAAWCF (ORCPT ); Fri, 1 Jan 2016 17:02:05 -0500 Received: from mailout3.hostsharing.net ([176.9.242.54]:41677 "EHLO mailout3.hostsharing.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751354AbcAAWCE (ORCPT ); Fri, 1 Jan 2016 17:02:04 -0500 X-Greylist: delayed 583 seconds by postgrey-1.27 at vger.kernel.org; Fri, 01 Jan 2016 17:02:04 EST Received: from h08.hostsharing.net (h08.hostsharing.net [83.223.95.28]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout3.hostsharing.net (Postfix) with ESMTPS id 5EB3E100FBC93; Fri, 1 Jan 2016 22:52:26 +0100 (CET) Received: from localhost (6-38-90-81.adsl.cmo.de [81.90.38.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by h08.hostsharing.net (Postfix) with ESMTPSA id 89068603E04D; Fri, 1 Jan 2016 22:52:25 +0100 (CET) X-Mailbox-Line: From 8e8f8983abe74c4cd43d95a444016fac0e5f822d Mon Sep 17 00:00:00 2001 Message-Id: <8e8f8983abe74c4cd43d95a444016fac0e5f822d.1451671935.git.lukas@wunner.de> In-Reply-To: References: From: Lukas Wunner Date: Fri, 1 Jan 2016 22:52:15 +0100 Subject: [PATCH 1/1] fixup! ACPI / utils: Add acpi_dev_present() To: "Rafael J. Wysocki" Cc: linux-acpi@vger.kernel.org Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Lukas Wunner --- drivers/acpi/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h index 60bda0d..1e6833a 100644 --- a/drivers/acpi/internal.h +++ b/drivers/acpi/internal.h @@ -88,7 +88,7 @@ bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent); extern struct list_head acpi_bus_id_list; -struct acpi_device_bus_id{ +struct acpi_device_bus_id { char bus_id[15]; unsigned int instance_no; struct list_head node;