summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/GNU-efi6
1 files changed, 6 insertions, 0 deletions
diff --git a/documentation/GNU-efi b/documentation/GNU-efi
index 63097fe..27c77e3 100644
--- a/documentation/GNU-efi
+++ b/documentation/GNU-efi
@@ -178,6 +178,12 @@ compatible arguments, is under the hood nothing else than a call to:
uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, buffer);
+The biggest advantage of 'uefi_call_wrapper_ is that doesn't matter what ABI
+your gcc is using, it will always correctly translate thet into UEFI ABI. If,
+and only if you've used the correct gcc options, then you should be able to
+make the same call as:
+
+ST->ConOut->OutputString(ST->ConOut, buffer);