From patchwork Fri Mar 20 09:55:50 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Beregalov X-Patchwork-Id: 13244 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n2K9u3mL011899 for ; Fri, 20 Mar 2009 09:56:04 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751080AbZCTJ4E (ORCPT ); Fri, 20 Mar 2009 05:56:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751614AbZCTJ4E (ORCPT ); Fri, 20 Mar 2009 05:56:04 -0400 Received: from nf-out-0910.google.com ([64.233.182.187]:18694 "EHLO nf-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751080AbZCTJ4B (ORCPT ); Fri, 20 Mar 2009 05:56:01 -0400 Received: by nf-out-0910.google.com with SMTP id d21so153712nfb.21 for ; Fri, 20 Mar 2009 02:55:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=OFn30nlFRePG88TeJvWt5NiAoE0HrjOj1ivq6qNs1tM=; b=EyuZit1ySJoYMpgEdiiivUXwftDh1+wmaUqGtpXBy1lVRf6hYdYXYQjeomr98mqy/m 7J+SkBvM13S5aPa04ubRzL1o7qaz304FAG7Ha1FmTdWfCfcdpub9Le4vAYq0FPz1GngU 6BJ90NB5cr4AEl/TFz6AntNfZK3AMP9qSTgBE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=FQGy5gkjIuNCLp62CAHOCeXgt3ye0AmUW8HzQzDQil5bGLO8zGQdGOumblkQ63zzHI vVjcDUFGSutiZgTbIrLPoAhdaKGBoZcEvGXyG6CgT3Nm1a+CvScuPZJDENwqDAXfkZWP 6H+/e4+12lYihczrDAxlYf95xwB6s+cLn6db8= Received: by 10.216.12.198 with SMTP id 48mr1631348wez.223.1237542958245; Fri, 20 Mar 2009 02:55:58 -0700 (PDT) Received: from orion (ppp83-237-115-123.pppoe.mtu-net.ru [83.237.115.123]) by mx.google.com with ESMTPS id t2sm2859180gve.2.2009.03.20.02.55.56 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 20 Mar 2009 02:55:57 -0700 (PDT) Date: Fri, 20 Mar 2009 12:55:50 +0300 From: Alexander Beregalov To: kyle@mcmartin.ca, linux-parisc@vger.kernel.org, linux-next@vger.kernel.org Cc: adobriyan@gmail.com Subject: [PATCH next 1/2] PARISC: led: remove proc_dir_entry::owner Message-ID: <20090320095550.GA26020@orion> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org proc_dir_entry::owner was removed in 0702c1c1a4 (proc 2/2: remove struct proc_dir_entry::owner) Signed-off-by: Alexander Beregalov --- drivers/parisc/led.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/parisc/led.c b/drivers/parisc/led.c index 454b653..67bdf20 100644 --- a/drivers/parisc/led.c +++ b/drivers/parisc/led.c @@ -243,13 +243,11 @@ static int __init led_create_procfs(void) proc_pdc_root = proc_mkdir("pdc", 0); if (!proc_pdc_root) return -1; - proc_pdc_root->owner = THIS_MODULE; ent = create_proc_entry("led", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root); if (!ent) return -1; ent->data = (void *)LED_NOLCD; /* LED */ ent->read_proc = led_proc_read; ent->write_proc = led_proc_write; - ent->owner = THIS_MODULE; if (led_type == LED_HASLCD) { @@ -258,7 +256,6 @@ static int __init led_create_procfs(void) ent->data = (void *)LED_HASLCD; /* LCD */ ent->read_proc = led_proc_read; ent->write_proc = led_proc_write; - ent->owner = THIS_MODULE; } return 0;