gpio: ts4800: Drop redundant code to set already initialized gpio_chip fields
[linux-2.6/btrfs-unstable.git] / arch / mips / bcm63xx / dev-rng.c
blobd277b4dc6c688eb394544b556e0941a54654c1b9
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * Copyright (C) 2011 Florian Fainelli <florian@openwrt.org>
7 */
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/platform_device.h>
12 #include <bcm63xx_cpu.h>
14 static struct resource rng_resources[] = {
16 .start = -1, /* filled at runtime */
17 .end = -1, /* filled at runtime */
18 .flags = IORESOURCE_MEM,
22 static struct platform_device bcm63xx_rng_device = {
23 .name = "bcm63xx-rng",
24 .id = -1,
25 .num_resources = ARRAY_SIZE(rng_resources),
26 .resource = rng_resources,
29 int __init bcm63xx_rng_register(void)
31 if (!BCMCPU_IS_6368())
32 return -ENODEV;
34 rng_resources[0].start = bcm63xx_regset_address(RSET_RNG);
35 rng_resources[0].end = rng_resources[0].start;
36 rng_resources[0].end += RSET_RNG_SIZE - 1;
38 return platform_device_register(&bcm63xx_rng_device);
40 arch_initcall(bcm63xx_rng_register);