From: Daniel Mack on
On Tue, Jun 29, 2010 at 02:15:01PM +0400, Kulikov Vasiliy wrote:
> Remove unnesessary casts from void*.

I have no idea how I made it to this list of recipients, but the change
looks sane to me :)


Daniel


> Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com>
> ---
> drivers/char/hw_random/n2-drv.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/char/hw_random/n2-drv.c b/drivers/char/hw_random/n2-drv.c
> index 0f9cbf1..101d5f2 100644
> --- a/drivers/char/hw_random/n2-drv.c
> +++ b/drivers/char/hw_random/n2-drv.c
> @@ -387,7 +387,7 @@ static int n2rng_init_control(struct n2rng *np)
>
> static int n2rng_data_read(struct hwrng *rng, u32 *data)
> {
> - struct n2rng *np = (struct n2rng *) rng->priv;
> + struct n2rng *np = rng->priv;
> unsigned long ra = __pa(&np->test_data);
> int len;
>
> --
> 1.7.0.4
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Herbert Xu on
On Tue, Jun 29, 2010 at 02:15:01PM +0400, Kulikov Vasiliy wrote:
> Remove unnesessary casts from void*.
>
> Signed-off-by: Kulikov Vasiliy <segooon(a)gmail.com>

Patch applied. Thank you.
--
Email: Herbert Xu <herbert(a)gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/