[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20090810153503.07dee9c4.akpm@linux-foundation.org>
Date: Mon, 10 Aug 2009 15:35:03 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: David Daney <ddaney@...iumnetworks.com>
Cc: ralf@...ux-mips.org, torvalds@...ux-foundation.org,
linux-mips@...ux-mips.org, linux-kernel@...r.kernel.org,
ddaney@...iumnetworks.com
Subject: Re: [PATCH 1/2] MIPS: Octeon: Add hardware RNG platform device.
On Mon, 10 Aug 2009 11:30:24 -0700
David Daney <ddaney@...iumnetworks.com> wrote:
> Add a platform device for the Octeon Random Number Generator (RNG).
>
> ...
>
> device_initcall(octeon_cf_device_init);
> +
> +/* Octeon Random Number Generator. */
> +static int __init octeon_rng_device_init(void)
> +{
> + struct platform_device *pd;
> + struct resource rng_resources[2];
> + unsigned int res_count;
> + int ret = 0;
> +
> + memset(rng_resources, 0, sizeof(rng_resources));
> + res_count = 0;
> + rng_resources[res_count].flags = IORESOURCE_MEM;
> + rng_resources[res_count].start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS);
> + rng_resources[res_count].end = rng_resources[res_count].start + 0xf;
> + res_count++;
> +
> + rng_resources[res_count].flags = IORESOURCE_MEM;
> + rng_resources[res_count].start = cvmx_build_io_address(8, 0);
> + rng_resources[res_count].end = rng_resources[res_count].start + 0x7;
> + res_count++;
You could do
strut resource rng_resources[2] = {
{
.flags = IORESOURCE_MEM,
.start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS),
{etc}
here.
> + pd = platform_device_alloc("octeon_rng", -1);
> + if (!pd) {
> + ret = -ENOMEM;
> + goto out;
> + }
> +
> + ret = platform_device_add_resources(pd, rng_resources, res_count);
use ARRAY_SIZE() here.
> + if (ret)
> + goto fail;
> +
> + ret = platform_device_add(pd);
> + if (ret)
> + goto fail;
> +
> + return ret;
> +fail:
> + platform_device_put(pd);
> +
> +out:
> + return ret;
> +}
Or not bother ;) It doesn't make any difference.
> --- /dev/null
> +++ b/arch/mips/include/asm/octeon/cvmx-rnm-defs.h
>
> ...
>
> + uint64_t u64;
>
> ...
>
This file should include types.h (at least).
--
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