Skip to content
Snippets Groups Projects
Commit 1bbe85f2 authored by Mitchel Humpherys's avatar Mitchel Humpherys
Browse files

lrdp-v2: add missing `self' reference to Armv7LPAEMMU

do_fl_sl_level_lookup is a class method, so it needs to be called on a
class object. Add some missing `self' class objects.

Change-Id: I8b9932ec2bd2eb7c2296355afff4783612171c7d
parent 75b79aa7
No related branches found
No related tags found
No related merge requests found
......@@ -174,11 +174,11 @@ class Armv7LPAEMMU(MMU):
def do_fl_level_lookup(self, table_base_address, table_index,
input_addr_split):
return do_fl_sl_level_lookup(table_base_address, table_index,
return self.do_fl_sl_level_lookup(table_base_address, table_index,
input_addr_split, 30)
def do_sl_level_lookup(self, table_base_address, table_index):
return do_fl_sl_level_lookup(table_base_address, table_index,
return self.do_fl_sl_level_lookup(table_base_address, table_index,
12, 21)
def do_tl_level_lookup(self, table_base_address, table_index):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment