Message ID | 1587980061-16433-1-git-send-email-guohanjun@huawei.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Headers | show |
Series | [1/2] cpuidle: sysfs: Remove the unused define_one_r(o/w) macros | expand |
On Mon, Apr 27, 2020 at 11:42 AM Hanjun Guo <guohanjun@huawei.com> wrote: > > The define_one_ro and define_one_rw macros are not used, > remove it. > > Signed-off-by: Hanjun Guo <guohanjun@huawei.com> > --- > drivers/cpuidle/sysfs.c | 5 ----- > 1 file changed, 5 deletions(-) > > diff --git a/drivers/cpuidle/sysfs.c b/drivers/cpuidle/sysfs.c > index cdeedbf..7729cf6 100644 > --- a/drivers/cpuidle/sysfs.c > +++ b/drivers/cpuidle/sysfs.c > @@ -167,11 +167,6 @@ struct cpuidle_attr { > ssize_t (*store)(struct cpuidle_device *, const char *, size_t count); > }; > > -#define define_one_ro(_name, show) \ > - static struct cpuidle_attr attr_##_name = __ATTR(_name, 0444, show, NULL) > -#define define_one_rw(_name, show, store) \ > - static struct cpuidle_attr attr_##_name = __ATTR(_name, 0644, show, store) > - > #define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr) > > struct cpuidle_device_kobj { > -- Applied as 5.8 material along with the [2/2], thanks!
diff --git a/drivers/cpuidle/sysfs.c b/drivers/cpuidle/sysfs.c index cdeedbf..7729cf6 100644 --- a/drivers/cpuidle/sysfs.c +++ b/drivers/cpuidle/sysfs.c @@ -167,11 +167,6 @@ struct cpuidle_attr { ssize_t (*store)(struct cpuidle_device *, const char *, size_t count); }; -#define define_one_ro(_name, show) \ - static struct cpuidle_attr attr_##_name = __ATTR(_name, 0444, show, NULL) -#define define_one_rw(_name, show, store) \ - static struct cpuidle_attr attr_##_name = __ATTR(_name, 0644, show, store) - #define attr_to_cpuidleattr(a) container_of(a, struct cpuidle_attr, attr) struct cpuidle_device_kobj {
The define_one_ro and define_one_rw macros are not used, remove it. Signed-off-by: Hanjun Guo <guohanjun@huawei.com> --- drivers/cpuidle/sysfs.c | 5 ----- 1 file changed, 5 deletions(-)