The recent change in the global variable handling added a bug to miss
setting the return value even if it found a data type.  Also add the
type name in the debug message.
Fixes: 1ebb5e17ef21b492 ("perf annotate-data: Add get_global_var_type()")
Reviewed-by: Ian Rogers <irogers@google.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20240405211800.1412920-3-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
 
                                        &offset, type_die)) {
                        dloc->type_offset = offset;
 
-                       pr_debug_dtp("found PC-rel by addr=%#"PRIx64" offset=%#x\n",
+                       pr_debug_dtp("found PC-rel by addr=%#"PRIx64" offset=%#x",
                                     dloc->var_addr, offset);
+                       pr_debug_type_name(type_die, TSR_KIND_TYPE);
+                       ret = 0;
                        goto out;
                }
        }