Eliminate the *args, **kwargs from the intel translation layer code.

This commit is contained in:
Mike Auty
2015-01-04 04:59:14 +00:00
parent 21109c8eca
commit 62e46c194d
+4 -4
View File
@@ -125,8 +125,8 @@ class Intel(interfaces.layers.TranslationLayerInterface):
class IntelPAE(Intel):
"""Class for handling Physical Address Extensions for Intel architectures"""
def __init__(self, *args, **kwargs):
Intel.__init__(self, *args, **kwargs)
def __init__(self, context, name, memory_layer, page_map_offset):
Intel.__init__(self, context, name, memory_layer, page_map_offset)
# These can vary depending on the type of space
self._entry_format = "<Q"
@@ -140,8 +140,8 @@ class IntelPAE(Intel):
class Intel32e(Intel):
def __init__(self, *args, **kwargs):
Intel.__init__(self, *args, **kwargs)
def __init__(self, context, name, memory_layer, page_map_offset):
Intel.__init__(self, context, name, memory_layer, page_map_offset)
# These can vary depending on the type of space
self._entry_format = "<Q"