aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-06-10 12:32:41 -0400
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-07-06 07:25:49 -0400
commit2bb00da1484073342a1f3e9f846ac0ad8dc6314d (patch)
tree37eee08d9326b6353a546bd74d528def68c47bdf
parent453f847ef2e445a7b1fe6cbe35d36a06c60f58a5 (diff)
[media] saa7146: use swap() in sort_and_eliminate()
Use kernel.h macro definition. Thanks to Julia Lawall for Coccinelle scripting support. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/common/saa7146/saa7146_hlp.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/media/common/saa7146/saa7146_hlp.c b/drivers/media/common/saa7146/saa7146_hlp.c
index be746d1aee9a..3dc6a838ca6f 100644
--- a/drivers/media/common/saa7146/saa7146_hlp.c
+++ b/drivers/media/common/saa7146/saa7146_hlp.c
@@ -307,7 +307,7 @@ static int calculate_v_scale_registers(struct saa7146_dev *dev, enum v4l2_field
307/* simple bubble-sort algorithm with duplicate elimination */ 307/* simple bubble-sort algorithm with duplicate elimination */
308static int sort_and_eliminate(u32* values, int* count) 308static int sort_and_eliminate(u32* values, int* count)
309{ 309{
310 int low = 0, high = 0, top = 0, temp = 0; 310 int low = 0, high = 0, top = 0;
311 int cur = 0, next = 0; 311 int cur = 0, next = 0;
312 312
313 /* sanity checks */ 313 /* sanity checks */
@@ -318,11 +318,8 @@ static int sort_and_eliminate(u32* values, int* count)
318 /* bubble sort the first @count items of the array @values */ 318 /* bubble sort the first @count items of the array @values */
319 for( top = *count; top > 0; top--) { 319 for( top = *count; top > 0; top--) {
320 for( low = 0, high = 1; high < top; low++, high++) { 320 for( low = 0, high = 1; high < top; low++, high++) {
321 if( values[low] > values[high] ) { 321 if( values[low] > values[high] )
322 temp = values[low]; 322 swap(values[low], values[high]);
323 values[low] = values[high];
324 values[high] = temp;
325 }
326 } 323 }
327 } 324 }
328 325