GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / mfd / mfd-core.c
blob1823a57b7d8f06f083f921bd7e9cfaa4f40c98a8
1 /*
2 * drivers/mfd/mfd-core.c
4 * core MFD support
5 * Copyright (c) 2006 Ian Molton
6 * Copyright (c) 2007,2008 Dmitry Baryshkov
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/acpi.h>
17 #include <linux/mfd/core.h>
18 #include <linux/slab.h>
20 static int mfd_add_device(struct device *parent, int id,
21 const struct mfd_cell *cell,
22 struct resource *mem_base,
23 int irq_base)
25 struct resource *res;
26 struct platform_device *pdev;
27 int ret = -ENOMEM;
28 int r;
30 pdev = platform_device_alloc(cell->name, id + cell->id);
31 if (!pdev)
32 goto fail_alloc;
34 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
35 if (!res)
36 goto fail_device;
38 pdev->dev.parent = parent;
39 platform_set_drvdata(pdev, cell->driver_data);
41 ret = platform_device_add_data(pdev,
42 cell->platform_data, cell->data_size);
43 if (ret)
44 goto fail_res;
46 for (r = 0; r < cell->num_resources; r++) {
47 res[r].name = cell->resources[r].name;
48 res[r].flags = cell->resources[r].flags;
50 /* Find out base to use */
51 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
52 res[r].parent = mem_base;
53 res[r].start = mem_base->start +
54 cell->resources[r].start;
55 res[r].end = mem_base->start +
56 cell->resources[r].end;
57 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
58 res[r].start = irq_base +
59 cell->resources[r].start;
60 res[r].end = irq_base +
61 cell->resources[r].end;
62 } else {
63 res[r].parent = cell->resources[r].parent;
64 res[r].start = cell->resources[r].start;
65 res[r].end = cell->resources[r].end;
68 ret = acpi_check_resource_conflict(res);
69 if (ret)
70 goto fail_res;
73 ret = platform_device_add_resources(pdev, res, cell->num_resources);
74 if (ret)
75 goto fail_res;
77 ret = platform_device_add(pdev);
78 if (ret)
79 goto fail_res;
81 kfree(res);
83 return 0;
85 /* platform_device_del(pdev); */
86 fail_res:
87 kfree(res);
88 fail_device:
89 platform_device_put(pdev);
90 fail_alloc:
91 return ret;
94 int mfd_add_devices(struct device *parent, int id,
95 const struct mfd_cell *cells, int n_devs,
96 struct resource *mem_base,
97 int irq_base)
99 int i;
100 int ret = 0;
102 for (i = 0; i < n_devs; i++) {
103 ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
104 if (ret)
105 break;
108 if (ret)
109 mfd_remove_devices(parent);
111 return ret;
113 EXPORT_SYMBOL(mfd_add_devices);
115 static int mfd_remove_devices_fn(struct device *dev, void *unused)
117 platform_device_unregister(to_platform_device(dev));
118 return 0;
121 void mfd_remove_devices(struct device *parent)
123 device_for_each_child(parent, NULL, mfd_remove_devices_fn);
125 EXPORT_SYMBOL(mfd_remove_devices);
127 MODULE_LICENSE("GPL");
128 MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");