lkml.org 
[lkml]   [2004]   [Sep]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] Suspend2 Merge: Driver model patches 2/2
On Thu, Sep 16, 2004 at 08:58:51PM +1000, Nigel Cunningham wrote:
>
> This simple helper adds support for finding a class given its name. I
> use this to locate the frame buffer drivers and move them to the
> keep-alive tree while suspending other drivers.
>
> +struct class * class_find(char * name)
> +{
> + struct class * this_class;
> +
> + if (!name)
> + return NULL;
> +
> + list_for_each_entry(this_class, &class_subsys.kset.list, subsys.kset.kobj.entry) {
> + if (!(strcmp(this_class->name, name)))
> + return this_class;
> + }
> +
> + return NULL;
> +}

Ick, no. I've been over this before with the fb people, and am not going
to accept this patch (nevermind that it's broken...) See the lkml
archives for more info on why I don't like this.

thanks,

greg k-h
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:06    [W:0.045 / U:0.564 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site