diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/newconfig/config.g | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index cdf8b9b39a..d8570c7bc6 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -923,7 +923,7 @@ class partobj: """ Add a relative path to a pnp device hanging off our parent """ if ((port < 0) or (port > 65536)): fatal("Invalid port") - if ((device < 0) or (device > 0xff)): + if ((device < 0) or (device > 0xffff)): fatal("Invalid device") self.set_path(".type=DEVICE_PATH_PNP,.u={.pnp={ .port = 0x%x, .device = 0x%x }}" % (port, device)) |