[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20061001152228.GA24539@zakalwe.fi>
Date: Sun, 1 Oct 2006 18:22:28 +0300
From: Heikki Orsila <shd@...alwe.fi>
To: "Eugeny S. Mints" <eugeny.mints@...il.com>
Cc: linux-kernel@...r.kernel.org, linux-pm@...ts.osdl.org,
matt@...adgs.com, amit.kucheria@...ia.com, igor.stoppa@...ia.com,
ext-Tuukka.Tikkanen@...ia.com
Subject: Re: [RFC] OMAP1 PM Core, PM Core Implementation 2/2
Some nitpicking about the patch follows..
On Sat, Sep 30, 2006 at 02:24:35AM +0400, Eugeny S. Mints wrote:
> +static long
> +get_vtg(const char *vdomain)
> +{
> + long ret = 0;
Unnecessary initialisation.
> +static long
> +set_vtg(const char *vdomain, int val)
> +{
> + long ret = 0;
here too. This and 'int i = 0;' happens in many functions.
> + err = omap_pm_core_verify_opt(opt);
> + if (err != 0)
> + goto out;
> +
> + return (void *)opt;
> +out:
> + kfree(opt);
> + return NULL;
> +}
Maybe use if (err != 0) { kfree(opt); return NULL; } because goto out is
only used once?
> +static int cpu_vltg_show(void *md_opt, int *value)
> +{
> + int rc = 0;
> + if (md_opt == NULL) {
> + if ((*value = get_vtg("v1")) <= 0)
> + return -EIO;
> + }
> + else {
> + struct pm_core_point *opt = (struct pm_core_point *)md_opt;
> + *value = opt->cpu_vltg;
> + }
> +
> + return rc;
> +}
int rc is unnecessary because the function always returns 0. This
happens in many places.
> + int dpll; /* in KHz */
> + int cpu; /* CPU frequency in KHz */
> + int tc; /* in KHz */
> + int per; /* in KHz */
> + int dsp; /* in KHz */
> + int dspmmu; /* in KHz */
> + int lcd; /* in KHz */
> +};
The SI multiplier is 'k', not 'K'.
- Heikki
-
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