fix query for hardware analysis enabled

The original enum queried is not available upstream yet.

Change-Id: I731394da0007523d1a56a8e01f2371651a1fc989
Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
diff --git a/util/pdbg.cpp b/util/pdbg.cpp
index 269c57b..f0142b5 100644
--- a/util/pdbg.cpp
+++ b/util/pdbg.cpp
@@ -174,7 +174,7 @@
 bool queryHardwareAnalysisSupported()
 {
     // Hardware analysis is only supported on P10 systems and up.
-    return (PDBG_PROC_P10 <= pdbg_get_proc());
+    return (PDBG_PROC_P9 < pdbg_get_proc());
 }
 
 //------------------------------------------------------------------------------