aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2008-10-26 12:01:21 -0400
committerKevin O'Connor <kevin@koconnor.net>2008-10-26 12:01:21 -0400
commit970a03254708272047d2b47229e40dbe16fc47d5 (patch)
treef1be8fc9ddef9dc3d0bef24695c2f88929f6825c /tools
parent9937386057661b5f8fd3995181ff6f9ad25f56a4 (diff)
downloadseabios-970a03254708272047d2b47229e40dbe16fc47d5.tar.gz
Misc minor cleanups.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkstack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkstack.py b/tools/checkstack.py
index 680c0335..8eafa975 100755
--- a/tools/checkstack.py
+++ b/tools/checkstack.py
@@ -13,8 +13,8 @@ import sys
import re
# List of functions we can assume are never called.
-#IGNORE = ['screenc', 'BX_PANIC', '__dprintf']
-IGNORE = ['screenc', 'BX_PANIC']
+#IGNORE = ['BX_PANIC', '__dprintf']
+IGNORE = ['BX_PANIC']
# Find out maximum stack usage for a function
def calcmaxstack(funcs, funcaddr):