Re: [PATCH] cpufreq: ARM big LITTLE: Add generic cpufreq driver andits DT glue

From: Harvey Harrison
Date: Wed Mar 06 2013 - 19:49:54 EST


On Wed, Mar 6, 2013 at 4:32 PM, Viresh Kumar <viresh.kumar@xxxxxxxxxx> wrote:

> clk[cluster] = clk_get_sys(name, NULL);
> - if (!IS_ERR(clk[cluster])) {
> + if (!IS_ERR_OR_NULL(clk[cluster])) {
> pr_debug("%s: clk: %p & freq table: %p, cluster: %d\n",
> __func__, clk[cluster], freq_table[cluster],
> cluster);


You seem pretty attached to IS_ERR_OR_NULL here.

Harvey
--
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/