/* * Industrial I/O configfs bits * * Copyright (c) 2015 Intel Corporation * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. */ #include <linux/configfs.h> #include <linux/module.h> #include <linux/init.h> #include <linux/kmod.h> #include <linux/slab.h> #include <linux/iio/iio.h> #include <linux/iio/configfs.h> static struct config_item_type iio_root_group_type = { .ct_owner = THIS_MODULE, }; struct configfs_subsystem iio_configfs_subsys = { .su_group = { .cg_item = { .ci_namebuf = "iio", .ci_type = &iio_root_group_type, }, }, .su_mutex = __MUTEX_INITIALIZER(iio_configfs_subsys.su_mutex), }; EXPORT_SYMBOL(iio_configfs_subsys);
static int __init iio_configfs_init(void) { config_group_init(&iio_configfs_subsys.su_group); return configfs_register_subsystem(&iio_configfs_subsys); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Daniel Baluta | 24 | 100.00% | 1 | 100.00% |
Total | 24 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Daniel Baluta | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Daniel Baluta | 137 | 97.86% | 1 | 50.00% |
Jonathan Cameron | 3 | 2.14% | 1 | 50.00% |
Total | 140 | 100.00% | 2 | 100.00% |