mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 18:21:49 +00:00
e6b5be2be4
Here's the set of driver core patches for 3.19-rc1. They are dominated by the removal of the .owner field in platform drivers. They touch a lot of files, but they are "simple" changes, just removing a line in a structure. Other than that, a few minor driver core and debugfs changes. There are some ath9k patches coming in through this tree that have been acked by the wireless maintainers as they relied on the debugfs changes. Everything has been in linux-next for a while. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEABECAAYFAlSOD20ACgkQMUfUDdst+ylLPACg2QrW1oHhdTMT9WI8jihlHVRM 53kAoLeteByQ3iVwWurwwseRPiWa8+MI =OVRS -----END PGP SIGNATURE----- Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core Pull driver core update from Greg KH: "Here's the set of driver core patches for 3.19-rc1. They are dominated by the removal of the .owner field in platform drivers. They touch a lot of files, but they are "simple" changes, just removing a line in a structure. Other than that, a few minor driver core and debugfs changes. There are some ath9k patches coming in through this tree that have been acked by the wireless maintainers as they relied on the debugfs changes. Everything has been in linux-next for a while" * tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (324 commits) Revert "ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries" fs: debugfs: add forward declaration for struct device type firmware class: Deletion of an unnecessary check before the function call "vunmap" firmware loader: fix hung task warning dump devcoredump: provide a one-way disable function device: Add dev_<level>_once variants ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries ath: use seq_file api for ath9k debugfs files debugfs: add helper function to create device related seq_file drivers/base: cacheinfo: remove noisy error boot message Revert "core: platform: add warning if driver has no owner" drivers: base: support cpu cache information interface to userspace via sysfs drivers: base: add cpu_device_create to support per-cpu devices topology: replace custom attribute macros with standard DEVICE_ATTR* cpumask: factor out show_cpumap into separate helper function driver core: Fix unbalanced device reference in drivers_probe driver core: fix race with userland in device_add() sysfs/kernfs: make read requests on pre-alloc files use the buffer. sysfs/kernfs: allow attributes to request write buffer be pre-allocated. fs: sysfs: return EGBIG on write if offset is larger than file size ...
94 lines
2.2 KiB
C
94 lines
2.2 KiB
C
/*
|
|
* dummy.c
|
|
*
|
|
* Copyright 2010 Wolfson Microelectronics PLC.
|
|
*
|
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This is useful for systems with mixed controllable and
|
|
* non-controllable regulators, as well as for allowing testing on
|
|
* systems with no controllable regulators.
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/export.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/regulator/driver.h>
|
|
#include <linux/regulator/machine.h>
|
|
|
|
#include "dummy.h"
|
|
|
|
struct regulator_dev *dummy_regulator_rdev;
|
|
|
|
static struct regulator_init_data dummy_initdata = {
|
|
.constraints = {
|
|
.always_on = 1,
|
|
},
|
|
};
|
|
|
|
static struct regulator_ops dummy_ops;
|
|
|
|
static const struct regulator_desc dummy_desc = {
|
|
.name = "regulator-dummy",
|
|
.id = -1,
|
|
.type = REGULATOR_VOLTAGE,
|
|
.owner = THIS_MODULE,
|
|
.ops = &dummy_ops,
|
|
};
|
|
|
|
static int dummy_regulator_probe(struct platform_device *pdev)
|
|
{
|
|
struct regulator_config config = { };
|
|
int ret;
|
|
|
|
config.dev = &pdev->dev;
|
|
config.init_data = &dummy_initdata;
|
|
|
|
dummy_regulator_rdev = regulator_register(&dummy_desc, &config);
|
|
if (IS_ERR(dummy_regulator_rdev)) {
|
|
ret = PTR_ERR(dummy_regulator_rdev);
|
|
pr_err("Failed to register regulator: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver dummy_regulator_driver = {
|
|
.probe = dummy_regulator_probe,
|
|
.driver = {
|
|
.name = "reg-dummy",
|
|
},
|
|
};
|
|
|
|
static struct platform_device *dummy_pdev;
|
|
|
|
void __init regulator_dummy_init(void)
|
|
{
|
|
int ret;
|
|
|
|
dummy_pdev = platform_device_alloc("reg-dummy", -1);
|
|
if (!dummy_pdev) {
|
|
pr_err("Failed to allocate dummy regulator device\n");
|
|
return;
|
|
}
|
|
|
|
ret = platform_device_add(dummy_pdev);
|
|
if (ret != 0) {
|
|
pr_err("Failed to register dummy regulator device: %d\n", ret);
|
|
platform_device_put(dummy_pdev);
|
|
return;
|
|
}
|
|
|
|
ret = platform_driver_register(&dummy_regulator_driver);
|
|
if (ret != 0) {
|
|
pr_err("Failed to register dummy regulator driver: %d\n", ret);
|
|
platform_device_unregister(dummy_pdev);
|
|
}
|
|
}
|