All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Driver Core update and fixes for 2.6.1
Date: Mon, 19 Jan 2004 17:12:40 -0800	[thread overview]
Message-ID: <10745611602245@kroah.com> (raw)
In-Reply-To: <10745611602007@kroah.com>

ChangeSet 1.1500, 2004/01/19 16:39:52-08:00, greg@kroah.com

[PATCH] LP: add sysfs class support for lp devices

Add sysfs class support for lp devices.

Based on a patch from Hanna Linder <hannal@us.ibm.com>


 drivers/char/lp.c |    6 ++++++
 1 files changed, 6 insertions(+)


diff -Nru a/drivers/char/lp.c b/drivers/char/lp.c
--- a/drivers/char/lp.c	Mon Jan 19 17:05:01 2004
+++ b/drivers/char/lp.c	Mon Jan 19 17:05:01 2004
@@ -145,6 +145,7 @@
 struct lp_struct lp_table[LP_NO];
 
 static unsigned int lp_count = 0;
+static struct class_simple *lp_class;
 
 #ifdef CONFIG_LP_CONSOLE
 static struct parport *console_registered; // initially NULL
@@ -795,6 +796,8 @@
 	if (reset)
 		lp_reset(nr);
 
+	class_simple_device_add(lp_class, MKDEV(LP_MAJOR, nr), NULL,
+				"lp%d", nr);
 	devfs_mk_cdev(MKDEV(LP_MAJOR, nr), S_IFCHR | S_IRUGO | S_IWUGO,
 			"printers/%d", nr);
 
@@ -897,6 +900,7 @@
 	}
 
 	devfs_mk_dir("printers");
+	lp_class = class_simple_create(THIS_MODULE, "printer");
 
 	if (parport_register_driver (&lp_driver)) {
 		printk (KERN_ERR "lp: unable to register with parport\n");
@@ -958,8 +962,10 @@
 			continue;
 		parport_unregister_device(lp_table[offset].dev);
 		devfs_remove("printers/%d", offset);
+		class_simple_device_remove(MKDEV(LP_MAJOR, offset));
 	}
 	devfs_remove("printers");
+	class_simple_destroy(lp_class);
 }
 
 __setup("lp=", lp_setup);


  reply	other threads:[~2004-01-20  1:18 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-01-20  1:10 [BK PATCH] Driver Core update for 2.6.1 Greg KH
2004-01-20  1:12 ` [PATCH] Driver Core update and fixes " Greg KH
2004-01-20  1:12   ` Greg KH
2004-01-20  1:12     ` Greg KH
2004-01-20  1:12       ` Greg KH
2004-01-20  1:12         ` Greg KH
2004-01-20  1:12           ` Greg KH [this message]
2004-01-20  1:12             ` Greg KH
2004-01-20  1:12               ` Greg KH
2004-01-20  1:12                 ` Greg KH
2004-01-20  1:12                   ` Greg KH
2004-01-20  1:12                     ` Greg KH
2004-01-20  8:40 ` [BK PATCH] Driver Core update " Måns Rullgård
2004-01-20 11:13   ` Andreas Jellinghaus
2004-01-20 17:14   ` Greg KH
2004-01-20 17:48     ` Måns Rullgård
2004-01-21  0:10       ` Greg KH
2004-01-21  1:59         ` Måns Rullgård
2004-01-21  2:18           ` Greg KH
2004-01-21 18:39             ` Måns Rullgård

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=10745611602245@kroah.com \
    --to=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.