mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-17 12:14:43 +00:00
iio: make function argument and some structures const
Make the argument of the functions iio_sw{d/t}_group_init_type_name const
as they are only passed to the function config_group_init_type_name having
the argument as const.
Make the config_item_type structures const as they are either passed to
the functions having the argument as const or they are
stored in the const "ci_type" field of a config_item structure.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
9736390234
commit
612a462acb
8 changed files with 12 additions and 12 deletions
|
|
@ -26,7 +26,7 @@
|
||||||
#include <linux/iio/sw_device.h>
|
#include <linux/iio/sw_device.h>
|
||||||
#include "iio_simple_dummy.h"
|
#include "iio_simple_dummy.h"
|
||||||
|
|
||||||
static struct config_item_type iio_dummy_type = {
|
static const struct config_item_type iio_dummy_type = {
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
#include <linux/iio/iio.h>
|
#include <linux/iio/iio.h>
|
||||||
#include <linux/iio/configfs.h>
|
#include <linux/iio/configfs.h>
|
||||||
|
|
||||||
static struct config_item_type iio_root_group_type = {
|
static const struct config_item_type iio_root_group_type = {
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,9 +19,9 @@
|
||||||
#include <linux/configfs.h>
|
#include <linux/configfs.h>
|
||||||
|
|
||||||
static struct config_group *iio_devices_group;
|
static struct config_group *iio_devices_group;
|
||||||
static struct config_item_type iio_device_type_group_type;
|
static const struct config_item_type iio_device_type_group_type;
|
||||||
|
|
||||||
static struct config_item_type iio_devices_group_type = {
|
static const struct config_item_type iio_devices_group_type = {
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -156,7 +156,7 @@ static struct configfs_group_operations device_ops = {
|
||||||
.drop_item = &device_drop_group,
|
.drop_item = &device_drop_group,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct config_item_type iio_device_type_group_type = {
|
static const struct config_item_type iio_device_type_group_type = {
|
||||||
.ct_group_ops = &device_ops,
|
.ct_group_ops = &device_ops,
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -19,9 +19,9 @@
|
||||||
#include <linux/configfs.h>
|
#include <linux/configfs.h>
|
||||||
|
|
||||||
static struct config_group *iio_triggers_group;
|
static struct config_group *iio_triggers_group;
|
||||||
static struct config_item_type iio_trigger_type_group_type;
|
static const struct config_item_type iio_trigger_type_group_type;
|
||||||
|
|
||||||
static struct config_item_type iio_triggers_group_type = {
|
static const struct config_item_type iio_triggers_group_type = {
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -156,7 +156,7 @@ static struct configfs_group_operations trigger_ops = {
|
||||||
.drop_item = &trigger_drop_group,
|
.drop_item = &trigger_drop_group,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct config_item_type iio_trigger_type_group_type = {
|
static const struct config_item_type iio_trigger_type_group_type = {
|
||||||
.ct_group_ops = &trigger_ops,
|
.ct_group_ops = &trigger_ops,
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ struct iio_hrtimer_info {
|
||||||
ktime_t period;
|
ktime_t period;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct config_item_type iio_hrtimer_type = {
|
static const struct config_item_type iio_hrtimer_type = {
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ struct iio_loop_info {
|
||||||
struct task_struct *task;
|
struct task_struct *task;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct config_item_type iio_loop_type = {
|
static const struct config_item_type iio_loop_type = {
|
||||||
.ct_owner = THIS_MODULE,
|
.ct_owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ void iio_sw_device_type_configfs_unregister(struct iio_sw_device_type *dt);
|
||||||
static inline
|
static inline
|
||||||
void iio_swd_group_init_type_name(struct iio_sw_device *d,
|
void iio_swd_group_init_type_name(struct iio_sw_device *d,
|
||||||
const char *name,
|
const char *name,
|
||||||
struct config_item_type *type)
|
const struct config_item_type *type)
|
||||||
{
|
{
|
||||||
#if IS_ENABLED(CONFIG_CONFIGFS_FS)
|
#if IS_ENABLED(CONFIG_CONFIGFS_FS)
|
||||||
config_group_init_type_name(&d->group, name, type);
|
config_group_init_type_name(&d->group, name, type);
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ void iio_sw_trigger_type_configfs_unregister(struct iio_sw_trigger_type *tt);
|
||||||
static inline
|
static inline
|
||||||
void iio_swt_group_init_type_name(struct iio_sw_trigger *t,
|
void iio_swt_group_init_type_name(struct iio_sw_trigger *t,
|
||||||
const char *name,
|
const char *name,
|
||||||
struct config_item_type *type)
|
const struct config_item_type *type)
|
||||||
{
|
{
|
||||||
#if IS_ENABLED(CONFIG_CONFIGFS_FS)
|
#if IS_ENABLED(CONFIG_CONFIGFS_FS)
|
||||||
config_group_init_type_name(&t->group, name, type);
|
config_group_init_type_name(&t->group, name, type);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue