[PATCH 1/8] scripts: get_abi.pl: Fix get_abi.pl search output

From: Mauro Carvalho Chehab
Date: Thu Sep 23 2021 - 11:47:01 EST


Currently, the get_abi.pl will print an invalid symbol
(\xac character). Fix it.

Fixes: ab9c14805b37 ("scripts: get_abi.pl: Better handle multiple What parameters")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx>
---
scripts/get_abi.pl | 1 +
1 file changed, 1 insertion(+)

diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl
index c52a1cf0f49d..65261f464e25 100755
--- a/scripts/get_abi.pl
+++ b/scripts/get_abi.pl
@@ -501,6 +501,7 @@ sub search_symbols {

my $file = $data{$what}->{filepath};

+ $what =~ s/\xac/, /g;
my $bar = $what;
$bar =~ s/./-/g;

--
2.31.1