Re: [PATCH 2/6] DMI: Introduce dmi_first_match to make the interface more flexible

From: Frans Pop
Date: Mon Jan 19 2009 - 16:15:44 EST


On Monday 19 January 2009, Rafael J. Wysocki wrote:
> +const struct dmi_system_id *dmi_first_match(const struct dmi_system_id
> *list)
> +{
> + const struct dmi_system_id *d;
> +
> + for (d = list; d->ident; d++)
> + if (dmi_matches(d))
> + return d;
> +
> + return NULL;
> +}
> +EXPORT_SYMBOL(dmi_first_match);

I did indeed have an older version of the patches (before you split them
out) and that was missing the "const" in the first quoted line, so that
explains the warning I had.

If I compare the version I've been running with the past months and this
series I see only minor changes and I don't expect any problems from
them. If I notice anything I'll let you know. No news is good news :-)

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