Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 157687
b: refs/heads/master
c: 4c8200a
h: refs/heads/master
i:
  157685: 34575a1
  157683: 1c3860d
  157679: 0b5eadb
v: v3
  • Loading branch information
Eduardo Valentin authored and Mark Brown committed Aug 20, 2009
1 parent ce508b5 commit 869b725
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e4f943b725008272d5c50e676a89d642232a4e3
refs/heads/master: 4c8200aeb04b8aeaf8c7425f49caf761e2cda95a
20 changes: 10 additions & 10 deletions trunk/arch/arm/plat-omap/mcbsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1077,34 +1077,34 @@ static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
THRESHOLD_PROP_BUILDER(max_tx_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_rx_thres.attr,
NULL,
};

static const struct attribute_group threshold_attr_group = {
.attrs = (struct attribute **)threshold_attrs,
static const struct attribute_group additional_attr_group = {
.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)
{
if (cpu_is_omap34xx()) {
mcbsp->max_tx_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,
"Unable to create threshold controls\n");
"Unable to create additional controls\n");
} else {
mcbsp->max_tx_thres = -EINVAL;
mcbsp->max_rx_thres = -EINVAL;
Expand All @@ -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)
{
if (cpu_is_omap34xx())
omap_thres_remove(mcbsp->dev);
omap_additional_remove(mcbsp->dev);
}
#else
static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
Expand Down

0 comments on commit 869b725

Please sign in to comment.