| To: | "Linux-MIPS" <linux-mips@linux-mips.org>, Andrew Morton <akpm@linux-foundation.org>, Takashi Iwai <tiwai@suse.de>, Ralf Baechle <ralf@linux-mips.org>, linux-kernel@vger.kernel.org |
|---|---|
| Subject: | [PATCH 2/8] sound/core/pcm_timer.c: use lib/gcd.c |
| From: | Florian Fainelli <florian@openwrt.org> |
| Date: | Thu, 4 Jun 2009 16:15:46 +0200 |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:date:subject :mime-version:x-uid:x-length:to:content-type :content-transfer-encoding:content-disposition:message-id; bh=NiMw1omyI95B5he9icaSelXG6iwYpO4gNp9MX35sx8I=; b=iSPgbX2xwDldRtetGhr785qM4oydSW4YWZgapOYtdXuGMw5In4h6l3JFOFwM9iCuWw ZrzN3NdBjxtHqvK0DMc5GR1CWzMg6+GL6yUm9MHlSeL91ki7YauM0Ifg87l8T0Q6xoHF 7Y/lDZW72Rh2hUnqyCue+YmwkU4P5nqJ7aOTw= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:date:subject:mime-version:x-uid:x-length:to :content-type:content-transfer-encoding:content-disposition :message-id; b=kjKGy03lbNmpwYaH6oCKpYze00Llrw6ZMgplguYuVOGS6nAokikmJTqOKdEiGtZu1p 1f5p+woszKGMWFyEuRdfXpW0gDGm1hefPT0yZ/4kKG2te7AKXDewEQZNPmi2YZ+aMLgj K5kQU3GN7gQU9oEhBjwN1LmwFngb8CnMHHQ94= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
This patch makes sound/core/pcm_timer.c use lib/gcd.c
Signed-off-by: Florian Fainelli <florian@openwrt.org>
---
diff --git a/sound/core/Kconfig b/sound/core/Kconfig
index 7bbdda0..0ae2485 100644
--- a/sound/core/Kconfig
+++ b/sound/core/Kconfig
@@ -5,6 +5,7 @@ config SND_TIMER
config SND_PCM
tristate
select SND_TIMER
+ select GCD
config SND_HWDEP
tristate
diff --git a/sound/core/pcm_timer.c b/sound/core/pcm_timer.c
index ca8068b..b01d948 100644
--- a/sound/core/pcm_timer.c
+++ b/sound/core/pcm_timer.c
@@ -20,6 +20,7 @@
*/
#include <linux/time.h>
+#include <linux/gcd.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/timer.h>
@@ -28,22 +29,6 @@
* Timer functions
*/
-/* Greatest common divisor */
-static unsigned long gcd(unsigned long a, unsigned long b)
-{
- unsigned long r;
- if (a < b) {
- r = a;
- a = b;
- b = r;
- }
- while ((r = a % b) != 0) {
- a = b;
- b = r;
- }
- return b;
-}
-
void snd_pcm_timer_resolution_change(struct snd_pcm_substream *substream)
{
unsigned long rate, mult, fsize, l, post;
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 1/8] add lib/gcd.c, Florian Fainelli |
|---|---|
| Next by Date: | [PATCH 3/8] net/netfilter/ipvs/ip_vs_wrr.c: use lib/gcd.c, Florian Fainelli |
| Previous by Thread: | [PATCH 1/8] add lib/gcd.c, Florian Fainelli |
| Next by Thread: | [PATCH 3/8] net/netfilter/ipvs/ip_vs_wrr.c: use lib/gcd.c, Florian Fainelli |
| Indexes: | [Date] [Thread] [Top] [All Lists] |