All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Mark Gross <mgross@linux.intel.com>
Cc: akpm@osdl.org, linux-kernel@vger.kernel.org,
	Sebastien.Bouchard@ca.kontron.com, mark.gross@intel.com
Subject: Re: Fwd: Telecom Clock Driver for MPCBL0010 ATCA computer blade
Date: Thu, 6 Oct 2005 16:15:01 -0700	[thread overview]
Message-ID: <20051006231501.GB7488@kroah.com> (raw)
In-Reply-To: <200510061554.35039.mgross@linux.intel.com>

On Thu, Oct 06, 2005 at 03:54:34PM -0700, Mark Gross wrote:
> On Thursday 06 October 2005 11:20, Greg KH wrote:
> > > +?????????????printk(KERN_ERR" misc_register retruns %d \n", ret);
> > > +?????????????ret = ?-EBUSY;
> > > +?????????????goto out3;
> > > +?????}
> > > +?????class = tlclk_miscdev.class;
> > > +?????class_device_create_file(class, &class_device_attr_current_ref);
> > 
> > Try registering a whole attribute group instead. ?It's much nicer than
> > the 20 lines you have to register and unregister your devices (and you
> > don't handle the error condition properly if something goes wrong half
> > way through.)
> > 
> 
> I couldn't find such an API that wasn't static to class.c, or
> described in class.txt.  Any pointers on this would be helpful.

sysfs_create_group() is what you want.

> +ssize_t tlclk_read(struct file *filp, char __user *buf, size_t count,
> +		loff_t *f_pos)
> +{
> +	if (count < sizeof(struct tlclk_alarms))
> +		return -EIO;
> +
> +	wait_event_interruptible(wq, got_event);
> +	if (copy_to_user(buf, alarm_events, sizeof(struct tlclk_alarms)))
> +		return -EFAULT;
> +
> +	memset(alarm_events, 0, sizeof(struct tlclk_alarms));
> +	got_event = 0;
> +
> +	return  sizeof(struct tlclk_alarms);
> +}

Two spaces after the return :(

> +
> +/* Read telecom clock IRQ number (Set by BIOS) */

Indent the comment please.

> +	init_timer(&switchover_timer);
> +/*	switchover_timer.function = switchover_timeout; */
> +/*	switchover_timer.data = 0; */

Remove these commented out lines?

Other than these minor things, and the attribute group stuff, this looks
good.

thanks,

greg k-h

  reply	other threads:[~2005-10-06 23:16 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-10-06 15:03 Fwd: Telecom Clock Driver for MPCBL0010 ATCA computer blade Mark Gross
2005-10-06 16:52 ` Jesper Juhl
2005-10-06 17:28   ` Mark Gross
2005-10-07 12:21     ` Jesper Juhl
2005-10-06 17:24 ` Fwd: " Alexey Dobriyan
2005-10-06 17:31   ` Mark Gross
2005-10-06 18:20 ` Greg KH
2005-10-06 22:54   ` Mark Gross
2005-10-06 23:15     ` Greg KH [this message]
2005-10-12 22:30       ` Mark Gross
2005-10-12 22:49         ` Greg KH
2005-10-12 23:36           ` Mark Gross
2005-10-13  1:14             ` Greg KH
2005-10-13 21:36               ` Mark Gross
2005-10-13 22:08                 ` Jesper Juhl
2005-10-13 22:40                   ` Greg KH
     [not found]                     ` <9a8748490510131547s127f3167j6c9427ff3d97f878@mail.gmail.com>
     [not found]                       ` <20051014001547.GA4647@kroah.com>
2005-10-14  1:28                         ` Jesper Juhl
2005-10-06 23:45     ` Alexey Dobriyan

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=20051006231501.GB7488@kroah.com \
    --to=greg@kroah.com \
    --cc=Sebastien.Bouchard@ca.kontron.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.gross@intel.com \
    --cc=mgross@linux.intel.com \
    /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.