From patchwork Thu Jul 29 05:09:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guenter Roeck X-Patchwork-Id: 60191 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id 9721210134F for ; Thu, 29 Jul 2010 15:53:22 +1000 (EST) Received: by ozlabs.org (Postfix) id 1A67E1007D2; Thu, 29 Jul 2010 15:42:04 +1000 (EST) Delivered-To: linuxppc-dev@ozlabs.org Received: from imr3.ericy.com (imr3.ericy.com [198.24.6.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A7E291007D1 for ; Thu, 29 Jul 2010 15:42:03 +1000 (EST) Received: from eusaamw0707.eamcs.ericsson.se ([147.117.20.32]) by imr3.ericy.com (8.13.8/8.13.8) with ESMTP id o6T59nuC001300 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Thu, 29 Jul 2010 00:10:03 -0500 Received: from prattle.redback.com (147.117.20.213) by eusaamw0707.eamcs.ericsson.se (147.117.20.92) with Microsoft SMTP Server id 8.2.234.1; Thu, 29 Jul 2010 01:09:49 -0400 Received: from localhost (localhost [127.0.0.1]) by prattle.redback.com (Postfix) with ESMTP id DD29FE1CC65; Wed, 28 Jul 2010 22:09:48 -0700 (PDT) Received: from prattle.redback.com ([127.0.0.1]) by localhost (prattle [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26393-01; Wed, 28 Jul 2010 22:09:48 -0700 (PDT) Received: from localhost (rbos-pc-13.lab.redback.com [10.12.11.133]) by prattle.redback.com (Postfix) with ESMTP id B8276E1CC6E; Wed, 28 Jul 2010 22:09:48 -0700 (PDT) From: Guenter Roeck To: "James E.J. Bottomley" , Richard Purdie , Greg Kroah-Hartman , Benjamin Herrenschmidt , Paul Mackerras Subject: [PATCH 6/6] Remove owner field from sysfs struct attribute Date: Wed, 28 Jul 2010 22:09:26 -0700 Message-ID: <1280380166-29196-7-git-send-email-guenter.roeck@ericsson.com> X-Mailer: git-send-email 1.7.0.87.g0901d In-Reply-To: <1280380166-29196-1-git-send-email-guenter.roeck@ericsson.com> References: <1280380166-29196-1-git-send-email-guenter.roeck@ericsson.com> MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 29 Jul 2010 15:52:41 +1000 Cc: Guenter Roeck , Nick Cheng , Linus Walleij , James Smart , linuxppc-dev@ozlabs.org, "Eric W. Biederman" , Dmitry Torokhov , Mark Brown , linux-kernel@vger.kernel.org, Chris Wright , Tejun Heo , Alex Iannicelli , Jani Nikula , Jean Delvare , Benjamin Thery , linux-scsi@vger.kernel.org, Liam Girdwood X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Signed-off-by: Guenter Roeck --- include/linux/sysfs.h | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h index f2694eb..880fa1a 100644 --- a/include/linux/sysfs.h +++ b/include/linux/sysfs.h @@ -22,14 +22,8 @@ struct kobject; struct module; enum kobj_ns_type; -/* FIXME - * The *owner field is no longer used. - * x86 tree has been cleaned up. The owner - * attribute is still left for other arches. - */ struct attribute { const char *name; - struct module *owner; mode_t mode; #ifdef CONFIG_DEBUG_LOCK_ALLOC struct lock_class_key *key;