From patchwork Mon Jan 14 21:37:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rafael Wysocki X-Patchwork-Id: 1973741 Return-Path: X-Original-To: patchwork-linux-acpi@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 27495DF2E1 for ; Mon, 14 Jan 2013 21:34:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757414Ab3ANVeW (ORCPT ); Mon, 14 Jan 2013 16:34:22 -0500 Received: from hydra.sisk.pl ([212.160.235.94]:40748 "EHLO hydra.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758174Ab3ANVdf (ORCPT ); Mon, 14 Jan 2013 16:33:35 -0500 Received: from vostro.rjw.lan (afpw127.neoplus.adsl.tpnet.pl [178.42.152.127]) by hydra.sisk.pl (Postfix) with ESMTPSA id 590AAE5530; Mon, 14 Jan 2013 22:34:11 +0100 (CET) From: "Rafael J. Wysocki" To: ACPI Devel Maling List Cc: Bjorn Helgaas , LKML , Toshi Kani , Yinghai Lu , Jiang Liu , Taku Izumi Subject: [PATCH 1/5] ACPI: Remove the ops field from struct acpi_device Date: Mon, 14 Jan 2013 22:37:28 +0100 Message-ID: <4366378.jvoXLv5QGr@vostro.rjw.lan> User-Agent: KMail/4.9.5 (Linux/3.8.0-rc3+; KDE/4.9.5; x86_64; ; ) In-Reply-To: <3885603.ydrrB7OEKf@vostro.rjw.lan> References: <3885603.ydrrB7OEKf@vostro.rjw.lan> MIME-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org From: Rafael J. Wysocki The ops field in struct acpi_device is not used anywhere, so remove it. Signed-off-by: Rafael J. Wysocki --- include/acpi/acpi_bus.h | 1 - 1 file changed, 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-pm/include/acpi/acpi_bus.h =================================================================== --- linux-pm.orig/include/acpi/acpi_bus.h +++ linux-pm/include/acpi/acpi_bus.h @@ -271,7 +271,6 @@ struct acpi_device { struct acpi_device_wakeup wakeup; struct acpi_device_perf performance; struct acpi_device_dir dir; - struct acpi_device_ops ops; struct acpi_driver *driver; void *driver_data; struct device dev;