- Fix the link check so it actually checks for the appropriate maximum link
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1218 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
5a71d1dca7
commit
3561759620
|
@ -628,7 +628,7 @@ class partobj:
|
|||
self.path = ""
|
||||
|
||||
# Link from parent device
|
||||
if ((link < 0) or (link > 2)):
|
||||
if ((link < 0) or (link > 16)):
|
||||
fatal("Invalid link")
|
||||
self.link = link
|
||||
|
||||
|
|
Loading…
Reference in New Issue