All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eduardo Valentin <eduardo.valentin@nokia.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: Linux-OMAP <linux-omap@vger.kernel.org>,
	ALSA-Devel <alsa-devel@vger.kernel.org>,
	Jarkko Nikula <jhnikula@gmail.com>,
	"Nurkkala Eero.An (EXT-Offcode/Oulu)"
	<ext-Eero.Nurkkala@nokia.com>,
	"Ujfalusi Peter (Nokia-D/Tampere)" <peter.ujfalusi@nokia.com>,
	Mark Brown <broonie@opensource.wolfsonmicro.com>,
	Eduardo Valentin <eduardo.valentin@nokia.com>
Subject: [PATCHv5 07/20] OMAP: McBSP: Rename thres sysfs symbols
Date: Thu, 20 Aug 2009 16:18:13 +0300	[thread overview]
Message-ID: <1250774306-7581-7-git-send-email-eduardo.valentin@nokia.com> (raw)
In-Reply-To: <1250774306-7581-1-git-send-email-eduardo.valentin@nokia.com>

From: Eduardo Valentin <eduardo.valentin@nokia.com>

This patch renames the symbols that handles threshold
sysfs properties. This way we can add more sysfs properties
to them.

Signed-off-by: Eduardo Valentin <eduardo.valentin@nokia.com>
---
 arch/arm/plat-omap/mcbsp.c |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/arch/arm/plat-omap/mcbsp.c b/arch/arm/plat-omap/mcbsp.c
index 0bbc912..ccaa9ae 100644
--- a/arch/arm/plat-omap/mcbsp.c
+++ b/arch/arm/plat-omap/mcbsp.c
@@ -1077,24 +1077,24 @@ 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)
@@ -1102,9 +1102,9 @@ 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;
@@ -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) {}
-- 
1.6.2.GIT


  parent reply	other threads:[~2009-08-20 13:32 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-20 13:18 [PATCHv5 01/20] OMAP: McBSP: Provide functions for ASoC frame syncronization Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 02/20] OMAP: McBSP: Add IRQEN, IRQSTATUS, THRESHOLD2 and THRESHOLD1 registers Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 03/20] OMAP: McBSP: Use appropriate value for startup delay Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 04/20] OMAP: McBSP: Add transmit/receive threshold handler Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 05/20] OMAP: McBSP: Create and export max_(r|t)x_thres property Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 06/20] OMAP3: McBSP: Lower the maximum buffersize for McBSP1,3,4,5 Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 06/20] OMAP3: McBSP: Lower the maximum buffersize for McBSP1, 3, 4, 5 Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 07/20] OMAP: McBSP: Rename thres sysfs symbols Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin [this message]
2009-08-20 13:18 ` [PATCHv5 08/20] OMAP: McBSP: Add link DMA mode selection Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 09/20] OMAP: McBSP: Wakeups utilized Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 10/20] OMAP: McBSP: Change wakeup signals Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 11/20] OMAP: McBSP: Retain McBSP FCLK clockactivity Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 12/20] OMAP: McBSP: Configure NO IDLE mode for DMA mode different of threshold Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 13/20] OMAP: McBSP: Do not enable wakeups for no-idle mode Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 14/20] OMAP: McBSP: Let element DMA mode hit retention also Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 15/20] ASoC: OMAP: Enable DMA burst mode Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 16/20] ASoC: OMAP: Make DMA 64 aligned Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 17/20] ASoC: Add runtime check for RFIG and XFIG Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 18/20] ASoC: Always syncronize audio transfers on frames Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 19/20] ASoC: OMAP: Use McBSP threshold to playback and capture Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin
2009-08-20 13:18 ` [PATCHv5 20/20] ASoC: OMAP: Use DMA operating mode of McBSP Eduardo Valentin
2009-08-20 13:18 ` Eduardo Valentin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1250774306-7581-7-git-send-email-eduardo.valentin@nokia.com \
    --to=eduardo.valentin@nokia.com \
    --cc=alsa-devel@vger.kernel.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=ext-Eero.Nurkkala@nokia.com \
    --cc=jhnikula@gmail.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=peter.ujfalusi@nokia.com \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.