- 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:
Eric Biederman 2003-10-14 04:29:39 +00:00
parent 5a71d1dca7
commit 3561759620
1 changed files with 1 additions and 1 deletions

View File

@ -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