All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Stein <a.stein@systec-electronic.com>
To: alsa-devel@alsa-project.org
Cc: Alexander Stein <a.stein@systec-electronic.com>
Subject: [PATCH] ctlparse: Respect softfloat configure option
Date: Thu, 19 May 2011 15:16:36 +0200	[thread overview]
Message-ID: <1305810996-10621-1-git-send-email-a.stein@systec-electronic.com> (raw)

If we want softlfoat we can't use ceil which uses libm.

Signed-off-by: Alexander Stein <a.stein@systec-electronic.com>
---
This patch relates to
http://mailman.alsa-project.org/pipermail/alsa-devel/2011-May/039693.html
and following.

 src/control/ctlparse.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/control/ctlparse.c b/src/control/ctlparse.c
index a929816..a16f96a 100644
--- a/src/control/ctlparse.c
+++ b/src/control/ctlparse.c
@@ -33,8 +33,17 @@
 
 /* Function to convert from percentage to volume. val = percentage */
 
+#ifdef HAVE_SOFT_FLOAT
+static inline long int convert_prange1(long val, long min, long max)
+{
+	long temp = val * (max - min);
+	return temp / 100 + min + ((temp % 100) == 0 ? 0 : 1);
+}
+#else
+
 #define convert_prange1(val, min, max) \
 	ceil((val) * ((max) - (min)) * 0.01 + (min))
+#endif
 
 #define check_range(val, min, max) \
 	((val < min) ? (min) : ((val > max) ? (max) : (val)))
-- 
1.7.3.4

             reply	other threads:[~2011-05-19 13:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-19 13:16 Alexander Stein [this message]
2011-05-20  7:10 ` [PATCH] ctlparse: Respect softfloat configure option Takashi Iwai

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=1305810996-10621-1-git-send-email-a.stein@systec-electronic.com \
    --to=a.stein@systec-electronic.com \
    --cc=alsa-devel@alsa-project.org \
    /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.