We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ba468 commit 42de9b0Copy full SHA for 42de9b0
drivers/gpu/drm/i915/gt/selftest_rps.c
@@ -44,9 +44,9 @@ static int cmp_u64(const void *A, const void *B)
44
{
45
const u64 *a = A, *b = B;
46
47
- if (a < b)
+ if (*a < *b)
48
return -1;
49
- else if (a > b)
+ else if (*a > *b)
50
return 1;
51
else
52
return 0;
@@ -56,9 +56,9 @@ static int cmp_u32(const void *A, const void *B)
56
57
const u32 *a = A, *b = B;
58
59
60
61
62
63
64
0 commit comments