Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * fixed.c |
| 3 | * |
| 4 | * Copyright 2008 Wolfson Microelectronics PLC. |
| 5 | * |
| 6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> |
| 7 | * |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 8 | * Copyright (c) 2009 Nokia Corporation |
| 9 | * Roger Quadros <ext-roger.quadros@nokia.com> |
| 10 | * |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of the |
| 14 | * License, or (at your option) any later version. |
| 15 | * |
| 16 | * This is useful for systems with mixed controllable and |
| 17 | * non-controllable regulators, as well as for allowing testing on |
| 18 | * systems with no controllable regulators. |
| 19 | */ |
| 20 | |
| 21 | #include <linux/err.h> |
| 22 | #include <linux/mutex.h> |
Paul Gortmaker | 65602c3 | 2011-07-17 16:28:23 -0400 | [diff] [blame] | 23 | #include <linux/module.h> |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/regulator/driver.h> |
| 26 | #include <linux/regulator/fixed.h> |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 27 | #include <linux/gpio.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 29 | #include <linux/of.h> |
| 30 | #include <linux/of_gpio.h> |
| 31 | #include <linux/regulator/of_regulator.h> |
| 32 | #include <linux/regulator/machine.h> |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 33 | |
| 34 | struct fixed_voltage_data { |
| 35 | struct regulator_desc desc; |
| 36 | struct regulator_dev *dev; |
| 37 | int microvolts; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 38 | int gpio; |
Adrian Hunter | eda79a3 | 2010-01-12 12:25:13 +0200 | [diff] [blame] | 39 | unsigned startup_delay; |
Dmitry Torokhov | 8ab3343 | 2010-02-23 23:37:55 -0800 | [diff] [blame] | 40 | bool enable_high; |
| 41 | bool is_enabled; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 42 | }; |
| 43 | |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 44 | |
| 45 | /** |
| 46 | * of_get_fixed_voltage_config - extract fixed_voltage_config structure info |
| 47 | * @dev: device requesting for fixed_voltage_config |
| 48 | * |
| 49 | * Populates fixed_voltage_config structure by extracting data from device |
| 50 | * tree node, returns a pointer to the populated structure of NULL if memory |
| 51 | * alloc fails. |
| 52 | */ |
Axel Lin | bc91396 | 2011-11-27 10:35:08 +0800 | [diff] [blame] | 53 | static struct fixed_voltage_config * |
| 54 | of_get_fixed_voltage_config(struct device *dev) |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 55 | { |
| 56 | struct fixed_voltage_config *config; |
| 57 | struct device_node *np = dev->of_node; |
| 58 | const __be32 *delay; |
| 59 | struct regulator_init_data *init_data; |
| 60 | |
| 61 | config = devm_kzalloc(dev, sizeof(struct fixed_voltage_config), |
| 62 | GFP_KERNEL); |
| 63 | if (!config) |
| 64 | return NULL; |
| 65 | |
Shawn Guo | d9a861c | 2011-12-01 17:21:06 +0800 | [diff] [blame] | 66 | config->init_data = of_get_regulator_init_data(dev, dev->of_node); |
Axel Lin | 4b864af | 2011-11-26 20:19:19 +0800 | [diff] [blame] | 67 | if (!config->init_data) |
| 68 | return NULL; |
| 69 | |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 70 | init_data = config->init_data; |
Richard Zhao | 0c437c4 | 2012-01-04 11:07:29 +0800 | [diff] [blame] | 71 | init_data->constraints.apply_uV = 0; |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 72 | |
| 73 | config->supply_name = init_data->constraints.name; |
| 74 | if (init_data->constraints.min_uV == init_data->constraints.max_uV) { |
| 75 | config->microvolts = init_data->constraints.min_uV; |
| 76 | } else { |
| 77 | dev_err(dev, |
| 78 | "Fixed regulator specified with variable voltages\n"); |
| 79 | return NULL; |
| 80 | } |
| 81 | |
| 82 | if (init_data->constraints.boot_on) |
| 83 | config->enabled_at_boot = true; |
| 84 | |
| 85 | config->gpio = of_get_named_gpio(np, "gpio", 0); |
| 86 | delay = of_get_property(np, "startup-delay-us", NULL); |
| 87 | if (delay) |
| 88 | config->startup_delay = be32_to_cpu(*delay); |
| 89 | |
| 90 | if (of_find_property(np, "enable-active-high", NULL)) |
| 91 | config->enable_high = true; |
| 92 | |
Laxman Dewangan | 9a50dba | 2012-05-07 15:58:19 +0530 | [diff] [blame] | 93 | if (of_find_property(np, "gpio-open-drain", NULL)) |
| 94 | config->gpio_is_open_drain = true; |
| 95 | |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 96 | return config; |
| 97 | } |
| 98 | |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 99 | static int fixed_voltage_is_enabled(struct regulator_dev *dev) |
| 100 | { |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 101 | struct fixed_voltage_data *data = rdev_get_drvdata(dev); |
| 102 | |
| 103 | return data->is_enabled; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | static int fixed_voltage_enable(struct regulator_dev *dev) |
| 107 | { |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 108 | struct fixed_voltage_data *data = rdev_get_drvdata(dev); |
| 109 | |
Mark Brown | 9d44206 | 2012-03-21 20:04:44 +0000 | [diff] [blame] | 110 | gpio_set_value_cansleep(data->gpio, data->enable_high); |
| 111 | data->is_enabled = true; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | static int fixed_voltage_disable(struct regulator_dev *dev) |
| 117 | { |
| 118 | struct fixed_voltage_data *data = rdev_get_drvdata(dev); |
| 119 | |
Mark Brown | 9d44206 | 2012-03-21 20:04:44 +0000 | [diff] [blame] | 120 | gpio_set_value_cansleep(data->gpio, !data->enable_high); |
| 121 | data->is_enabled = false; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 122 | |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 123 | return 0; |
| 124 | } |
| 125 | |
Mark Brown | 17133dc | 2010-01-28 10:21:05 +0000 | [diff] [blame] | 126 | static int fixed_voltage_enable_time(struct regulator_dev *dev) |
| 127 | { |
| 128 | struct fixed_voltage_data *data = rdev_get_drvdata(dev); |
| 129 | |
| 130 | return data->startup_delay; |
| 131 | } |
| 132 | |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 133 | static int fixed_voltage_get_voltage(struct regulator_dev *dev) |
| 134 | { |
| 135 | struct fixed_voltage_data *data = rdev_get_drvdata(dev); |
| 136 | |
Mark Brown | aebe495 | 2011-11-02 11:38:45 +0000 | [diff] [blame] | 137 | if (data->microvolts) |
| 138 | return data->microvolts; |
| 139 | else |
| 140 | return -EINVAL; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 141 | } |
| 142 | |
Mark Brown | 9035cef | 2009-04-28 11:13:54 +0100 | [diff] [blame] | 143 | static int fixed_voltage_list_voltage(struct regulator_dev *dev, |
| 144 | unsigned selector) |
| 145 | { |
| 146 | struct fixed_voltage_data *data = rdev_get_drvdata(dev); |
| 147 | |
| 148 | if (selector != 0) |
| 149 | return -EINVAL; |
| 150 | |
| 151 | return data->microvolts; |
| 152 | } |
| 153 | |
Mark Brown | 9d44206 | 2012-03-21 20:04:44 +0000 | [diff] [blame] | 154 | static struct regulator_ops fixed_voltage_gpio_ops = { |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 155 | .is_enabled = fixed_voltage_is_enabled, |
| 156 | .enable = fixed_voltage_enable, |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 157 | .disable = fixed_voltage_disable, |
Mark Brown | 17133dc | 2010-01-28 10:21:05 +0000 | [diff] [blame] | 158 | .enable_time = fixed_voltage_enable_time, |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 159 | .get_voltage = fixed_voltage_get_voltage, |
Mark Brown | 9035cef | 2009-04-28 11:13:54 +0100 | [diff] [blame] | 160 | .list_voltage = fixed_voltage_list_voltage, |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 161 | }; |
| 162 | |
Mark Brown | 9d44206 | 2012-03-21 20:04:44 +0000 | [diff] [blame] | 163 | static struct regulator_ops fixed_voltage_ops = { |
| 164 | .get_voltage = fixed_voltage_get_voltage, |
| 165 | .list_voltage = fixed_voltage_list_voltage, |
| 166 | }; |
| 167 | |
Dmitry Torokhov | 8ab3343 | 2010-02-23 23:37:55 -0800 | [diff] [blame] | 168 | static int __devinit reg_fixed_voltage_probe(struct platform_device *pdev) |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 169 | { |
Axel Lin | 22d881c | 2011-11-27 20:07:57 +0800 | [diff] [blame] | 170 | struct fixed_voltage_config *config; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 171 | struct fixed_voltage_data *drvdata; |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 172 | struct regulator_config cfg = { }; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 173 | int ret; |
| 174 | |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 175 | if (pdev->dev.of_node) |
| 176 | config = of_get_fixed_voltage_config(&pdev->dev); |
Axel Lin | 22d881c | 2011-11-27 20:07:57 +0800 | [diff] [blame] | 177 | else |
| 178 | config = pdev->dev.platform_data; |
| 179 | |
| 180 | if (!config) |
| 181 | return -ENOMEM; |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 182 | |
Mark Brown | c45bb35 | 2012-03-21 18:13:29 +0000 | [diff] [blame] | 183 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data), |
| 184 | GFP_KERNEL); |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 185 | if (drvdata == NULL) { |
Mark Brown | c53ad7f | 2009-08-03 18:49:53 +0100 | [diff] [blame] | 186 | dev_err(&pdev->dev, "Failed to allocate device data\n"); |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 187 | ret = -ENOMEM; |
| 188 | goto err; |
| 189 | } |
| 190 | |
| 191 | drvdata->desc.name = kstrdup(config->supply_name, GFP_KERNEL); |
| 192 | if (drvdata->desc.name == NULL) { |
Mark Brown | c53ad7f | 2009-08-03 18:49:53 +0100 | [diff] [blame] | 193 | dev_err(&pdev->dev, "Failed to allocate supply name\n"); |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 194 | ret = -ENOMEM; |
| 195 | goto err; |
| 196 | } |
| 197 | drvdata->desc.type = REGULATOR_VOLTAGE; |
| 198 | drvdata->desc.owner = THIS_MODULE; |
Sascha Hauer | 1c37f8a | 2012-03-03 12:40:01 +0100 | [diff] [blame] | 199 | |
| 200 | if (config->microvolts) |
| 201 | drvdata->desc.n_voltages = 1; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 202 | |
| 203 | drvdata->microvolts = config->microvolts; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 204 | drvdata->gpio = config->gpio; |
Adrian Hunter | eda79a3 | 2010-01-12 12:25:13 +0200 | [diff] [blame] | 205 | drvdata->startup_delay = config->startup_delay; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 206 | |
| 207 | if (gpio_is_valid(config->gpio)) { |
Laxman Dewangan | a4d9f17 | 2012-03-07 15:58:33 +0530 | [diff] [blame] | 208 | int gpio_flag; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 209 | drvdata->enable_high = config->enable_high; |
| 210 | |
| 211 | /* FIXME: Remove below print warning |
| 212 | * |
| 213 | * config->gpio must be set to -EINVAL by platform code if |
| 214 | * GPIO control is not required. However, early adopters |
| 215 | * not requiring GPIO control may forget to initialize |
| 216 | * config->gpio to -EINVAL. This will cause GPIO 0 to be used |
| 217 | * for GPIO control. |
| 218 | * |
| 219 | * This warning will be removed once there are a couple of users |
| 220 | * for this driver. |
| 221 | */ |
| 222 | if (!config->gpio) |
| 223 | dev_warn(&pdev->dev, |
| 224 | "using GPIO 0 for regulator enable control\n"); |
| 225 | |
Laxman Dewangan | a4d9f17 | 2012-03-07 15:58:33 +0530 | [diff] [blame] | 226 | /* |
| 227 | * set output direction without changing state |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 228 | * to prevent glitch |
| 229 | */ |
| 230 | drvdata->is_enabled = config->enabled_at_boot; |
| 231 | ret = drvdata->is_enabled ? |
| 232 | config->enable_high : !config->enable_high; |
Laxman Dewangan | a4d9f17 | 2012-03-07 15:58:33 +0530 | [diff] [blame] | 233 | gpio_flag = ret ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 234 | |
Laxman Dewangan | a4d9f17 | 2012-03-07 15:58:33 +0530 | [diff] [blame] | 235 | if (config->gpio_is_open_drain) |
| 236 | gpio_flag |= GPIOF_OPEN_DRAIN; |
| 237 | |
| 238 | ret = gpio_request_one(config->gpio, gpio_flag, |
| 239 | config->supply_name); |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 240 | if (ret) { |
| 241 | dev_err(&pdev->dev, |
Laxman Dewangan | a4d9f17 | 2012-03-07 15:58:33 +0530 | [diff] [blame] | 242 | "Could not obtain regulator enable GPIO %d: %d\n", |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 243 | config->gpio, ret); |
Laxman Dewangan | a4d9f17 | 2012-03-07 15:58:33 +0530 | [diff] [blame] | 244 | goto err_name; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 245 | } |
| 246 | |
Mark Brown | 9d44206 | 2012-03-21 20:04:44 +0000 | [diff] [blame] | 247 | drvdata->desc.ops = &fixed_voltage_gpio_ops; |
| 248 | |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 249 | } else { |
Mark Brown | 9d44206 | 2012-03-21 20:04:44 +0000 | [diff] [blame] | 250 | drvdata->desc.ops = &fixed_voltage_ops; |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 251 | } |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 252 | |
Mark Brown | c172708 | 2012-04-04 00:50:22 +0100 | [diff] [blame] | 253 | cfg.dev = &pdev->dev; |
| 254 | cfg.init_data = config->init_data; |
| 255 | cfg.driver_data = drvdata; |
| 256 | cfg.of_node = pdev->dev.of_node; |
| 257 | |
| 258 | drvdata->dev = regulator_register(&drvdata->desc, &cfg); |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 259 | if (IS_ERR(drvdata->dev)) { |
| 260 | ret = PTR_ERR(drvdata->dev); |
Mark Brown | c53ad7f | 2009-08-03 18:49:53 +0100 | [diff] [blame] | 261 | dev_err(&pdev->dev, "Failed to register regulator: %d\n", ret); |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 262 | goto err_gpio; |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | platform_set_drvdata(pdev, drvdata); |
| 266 | |
| 267 | dev_dbg(&pdev->dev, "%s supplying %duV\n", drvdata->desc.name, |
| 268 | drvdata->microvolts); |
| 269 | |
| 270 | return 0; |
| 271 | |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 272 | err_gpio: |
| 273 | if (gpio_is_valid(config->gpio)) |
| 274 | gpio_free(config->gpio); |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 275 | err_name: |
| 276 | kfree(drvdata->desc.name); |
| 277 | err: |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 278 | return ret; |
| 279 | } |
| 280 | |
Dmitry Torokhov | 8ab3343 | 2010-02-23 23:37:55 -0800 | [diff] [blame] | 281 | static int __devexit reg_fixed_voltage_remove(struct platform_device *pdev) |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 282 | { |
| 283 | struct fixed_voltage_data *drvdata = platform_get_drvdata(pdev); |
| 284 | |
| 285 | regulator_unregister(drvdata->dev); |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 286 | if (gpio_is_valid(drvdata->gpio)) |
| 287 | gpio_free(drvdata->gpio); |
Dan Carpenter | 80099c7 | 2009-11-16 11:05:03 +0200 | [diff] [blame] | 288 | kfree(drvdata->desc.name); |
Roger Quadros | 86d9884 | 2009-08-06 19:37:29 +0300 | [diff] [blame] | 289 | |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 290 | return 0; |
| 291 | } |
| 292 | |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 293 | #if defined(CONFIG_OF) |
| 294 | static const struct of_device_id fixed_of_match[] __devinitconst = { |
| 295 | { .compatible = "regulator-fixed", }, |
| 296 | {}, |
| 297 | }; |
| 298 | MODULE_DEVICE_TABLE(of, fixed_of_match); |
| 299 | #else |
| 300 | #define fixed_of_match NULL |
| 301 | #endif |
| 302 | |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 303 | static struct platform_driver regulator_fixed_voltage_driver = { |
Dmitry Torokhov | 8ab3343 | 2010-02-23 23:37:55 -0800 | [diff] [blame] | 304 | .probe = reg_fixed_voltage_probe, |
| 305 | .remove = __devexit_p(reg_fixed_voltage_remove), |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 306 | .driver = { |
| 307 | .name = "reg-fixed-voltage", |
Dmitry Torokhov | 8ab3343 | 2010-02-23 23:37:55 -0800 | [diff] [blame] | 308 | .owner = THIS_MODULE, |
Rajendra Nayak | cef4910 | 2011-11-18 16:47:18 +0530 | [diff] [blame] | 309 | .of_match_table = fixed_of_match, |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 310 | }, |
| 311 | }; |
| 312 | |
| 313 | static int __init regulator_fixed_voltage_init(void) |
| 314 | { |
| 315 | return platform_driver_register(®ulator_fixed_voltage_driver); |
| 316 | } |
Mark Brown | 5a1b22b | 2009-04-27 18:21:18 +0100 | [diff] [blame] | 317 | subsys_initcall(regulator_fixed_voltage_init); |
Mark Brown | 4b74ff6 | 2008-04-30 16:27:12 +0100 | [diff] [blame] | 318 | |
| 319 | static void __exit regulator_fixed_voltage_exit(void) |
| 320 | { |
| 321 | platform_driver_unregister(®ulator_fixed_voltage_driver); |
| 322 | } |
| 323 | module_exit(regulator_fixed_voltage_exit); |
| 324 | |
| 325 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); |
| 326 | MODULE_DESCRIPTION("Fixed voltage regulator"); |
| 327 | MODULE_LICENSE("GPL"); |
Mark Brown | 38c53c8 | 2009-04-28 11:13:55 +0100 | [diff] [blame] | 328 | MODULE_ALIAS("platform:reg-fixed-voltage"); |