Commit 4c8200ae authored by Eduardo Valentin's avatar Eduardo Valentin Committed by Mark Brown

OMAP: McBSP: Rename thres sysfs symbols

This patch renames the symbols that handles threshold
sysfs properties. This way we can add more sysfs properties
to them.
Signed-off-by: default avatarEduardo Valentin <eduardo.valentin@nokia.com>
Acked-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 7e4f943b
...@@ -1077,24 +1077,24 @@ static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store); ...@@ -1077,24 +1077,24 @@ static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
THRESHOLD_PROP_BUILDER(max_tx_thres); THRESHOLD_PROP_BUILDER(max_tx_thres);
THRESHOLD_PROP_BUILDER(max_rx_thres); THRESHOLD_PROP_BUILDER(max_rx_thres);
static const struct attribute *threshold_attrs[] = { static const struct attribute *additional_attrs[] = {
&dev_attr_max_tx_thres.attr, &dev_attr_max_tx_thres.attr,
&dev_attr_max_rx_thres.attr, &dev_attr_max_rx_thres.attr,
NULL, NULL,
}; };
static const struct attribute_group threshold_attr_group = { static const struct attribute_group additional_attr_group = {
.attrs = (struct attribute **)threshold_attrs, .attrs = (struct attribute **)additional_attrs,
}; };
static inline int __devinit omap_thres_add(struct device *dev) static inline int __devinit omap_additional_add(struct device *dev)
{ {
return sysfs_create_group(&dev->kobj, &threshold_attr_group); return sysfs_create_group(&dev->kobj, &additional_attr_group);
} }
static inline void __devexit omap_thres_remove(struct device *dev) static inline void __devexit omap_additional_remove(struct device *dev)
{ {
sysfs_remove_group(&dev->kobj, &threshold_attr_group); sysfs_remove_group(&dev->kobj, &additional_attr_group);
} }
static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
...@@ -1102,9 +1102,9 @@ static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) ...@@ -1102,9 +1102,9 @@ static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
if (cpu_is_omap34xx()) { if (cpu_is_omap34xx()) {
mcbsp->max_tx_thres = max_thres(mcbsp); mcbsp->max_tx_thres = max_thres(mcbsp);
mcbsp->max_rx_thres = max_thres(mcbsp); mcbsp->max_rx_thres = max_thres(mcbsp);
if (omap_thres_add(mcbsp->dev)) if (omap_additional_add(mcbsp->dev))
dev_warn(mcbsp->dev, dev_warn(mcbsp->dev,
"Unable to create threshold controls\n"); "Unable to create additional controls\n");
} else { } else {
mcbsp->max_tx_thres = -EINVAL; mcbsp->max_tx_thres = -EINVAL;
mcbsp->max_rx_thres = -EINVAL; mcbsp->max_rx_thres = -EINVAL;
...@@ -1114,7 +1114,7 @@ static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) ...@@ -1114,7 +1114,7 @@ static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
{ {
if (cpu_is_omap34xx()) if (cpu_is_omap34xx())
omap_thres_remove(mcbsp->dev); omap_additional_remove(mcbsp->dev);
} }
#else #else
static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {} static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment