#include <linux/slab.h> #include <linux/string.h> #include <linux/platform_device.h> #include <linux/regulator/machine.h> #include <linux/regulator/fixed.h> struct fixed_regulator_data { struct fixed_voltage_config cfg; struct regulator_init_data init_data; struct platform_device pdev; };
static void regulator_fixed_release(struct device *dev) { struct fixed_regulator_data *data = container_of(dev, struct fixed_regulator_data, pdev.dev); kfree(data->cfg.supply_name); kfree(data); }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
sascha hauer | sascha hauer | 33 | 78.57% | 1 | 50.00% |
guennadi liakhovetski | guennadi liakhovetski | 9 | 21.43% | 1 | 50.00% |
Total | 42 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
sascha hauer | sascha hauer | 164 | 82.41% | 1 | 33.33% |
guennadi liakhovetski | guennadi liakhovetski | 35 | 17.59% | 2 | 66.67% |
Total | 199 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
sascha hauer | sascha hauer | 226 | 82.48% | 1 | 33.33% |
guennadi liakhovetski | guennadi liakhovetski | 48 | 17.52% | 2 | 66.67% |
Total | 274 | 100.00% | 3 | 100.00% |