Skip to content

Commit

Permalink
tools: iio: remove unnecessary double pointer
Browse files Browse the repository at this point in the history
Remove unnecessary double pointer from channel sorting function.

Signed-off-by: Joo Aun Saw <jasaw@dius.com.au>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
  • Loading branch information
Joo Aun Saw authored and Jonathan Cameron committed Aug 8, 2015
1 parent 6b20f40 commit 95ddd3f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions tools/iio/iio_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,17 +286,17 @@ int iioutils_get_param_float(float *output, const char *param_name,
* @cnt: the amount of array elements
**/

void bsort_channel_array_by_index(struct iio_channel_info **ci_array, int cnt)
void bsort_channel_array_by_index(struct iio_channel_info *ci_array, int cnt)
{
struct iio_channel_info temp;
int x, y;

for (x = 0; x < cnt; x++)
for (y = 0; y < (cnt - 1); y++)
if ((*ci_array)[y].index > (*ci_array)[y + 1].index) {
temp = (*ci_array)[y + 1];
(*ci_array)[y + 1] = (*ci_array)[y];
(*ci_array)[y] = temp;
if (ci_array[y].index > ci_array[y + 1].index) {
temp = ci_array[y + 1];
ci_array[y + 1] = ci_array[y];
ci_array[y] = temp;
}
}

Expand Down Expand Up @@ -516,7 +516,7 @@ int build_channel_array(const char *device_dir,

free(scan_el_dir);
/* reorder so that the array is in index order */
bsort_channel_array_by_index(ci_array, *counter);
bsort_channel_array_by_index(*ci_array, *counter);

return 0;

Expand Down
2 changes: 1 addition & 1 deletion tools/iio/iio_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ int iioutils_get_type(unsigned *is_signed, unsigned *bytes, unsigned *bits_used,
int iioutils_get_param_float(float *output, const char *param_name,
const char *device_dir, const char *name,
const char *generic_name);
void bsort_channel_array_by_index(struct iio_channel_info **ci_array, int cnt);
void bsort_channel_array_by_index(struct iio_channel_info *ci_array, int cnt);
int build_channel_array(const char *device_dir,
struct iio_channel_info **ci_array, int *counter);
int find_type_by_name(const char *name, const char *type);
Expand Down

0 comments on commit 95ddd3f

Please sign in to comment.