[KJ][patch 3/3] VIDC20: use abs() from kernel.h instead of own definition

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: andre
Date: Thursday, August 30, 2007 - 3:40 am

From: Andre Haupt <andre@finow14.de>
Signed-off-by: Andre Haupt <andre@finow14.de>
---
Index: linus/sound/oss/vidc.c
===================================================================
--- linus.orig/sound/oss/vidc.c	2007-08-30 11:57:13.000000000 +0200
+++ linus/sound/oss/vidc.c	2007-08-30 11:57:53.000000000 +0200
@@ -185,8 +185,6 @@ static unsigned int vidc_audio_set_forma
 	return vidc_audio_format;
 }
 
-#define my_abs(i) ((i)<0 ? -(i) : (i))
-
 static int vidc_audio_set_speed(int dev, int rate)
 {
 	if (rate) {
@@ -214,8 +212,8 @@ static int vidc_audio_set_speed(int dev,
 		rate_ext = VIDC_SOUND_CLOCK_EXT / hwrate_ext;
 
 		/* Chose between external and internal clock */
-		diff_int = my_abs(rate_ext-rate);
-		diff_ext = my_abs(rate_int-rate);
+		diff_int = abs(rate_ext-rate);
+		diff_ext = abs(rate_int-rate);
 		if (diff_ext < diff_int) {
 			/*printk("VIDC: external %d %d %d\n", rate, rate_ext, hwrate_ext);*/
 			hwrate=hwrate_ext;

--
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[KJ][patch 3/3] VIDC20: use abs() from kernel.h instead of ..., andre, (Thu Aug 30, 3:40 am)