[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20100827002439.8e8df11b.akpm@linux-foundation.org>
Date: Fri, 27 Aug 2010 00:24:39 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: Jean Delvare <khali@...ux-fr.org>
Cc: Andrew Chew <achew@...dia.com>, linux-kernel@...r.kernel.org,
linux-i2c@...r.kernel.org, alan@...ux.intel.com, olof@...om.net
Subject: Re: [PATCH 1/1] drivers/misc/akm8975: Add compass sensor driver
On Fri, 27 Aug 2010 09:16:07 +0200 Jean Delvare <khali@...ux-fr.org> wrote:
> > +static int akm_aot_open(struct inode *inode, struct file *file)
> > +{
> > + int ret = -1;
>
> Useless and dangerous initialization.
>
> > +
> > + FUNCDBG("called");
> > + if (atomic_cmpxchg(&open_flag, 0, 1) == 0) {
> > + wake_up(&open_wq);
> > + ret = 0;
this doesn't do anything either.
> > + }
> > +
> > + ret = nonseekable_open(inode, file);
> > + if (ret)
> > + return ret;
> > +
> > + file->private_data = akmd_data;
> > +
> > + return ret;
> > +}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists