Merge pull request #1783 from abhijitG-xlnx/movdir64 ionic: Fix have_movdir64b() cpuid max-leaf query
diff --git a/providers/ionic/ionic_verbs.c b/providers/ionic/ionic_verbs.c index 5108a6f..b5abe74 100644 --- a/providers/ionic/ionic_verbs.c +++ b/providers/ionic/ionic_verbs.c
@@ -42,7 +42,7 @@ /* Return highest supported cpuid input value. */ __asm__ volatile ("cpuid\n\t" : "=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) - : "0" (leaf)); + : "0" (0)); if (ax == 0 || ax < leaf) return 0;