diff options
Diffstat (limited to 'src/devices/pcix_device.c')
-rw-r--r-- | src/devices/pcix_device.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/pcix_device.c b/src/devices/pcix_device.c index 22dd06e5bd..6bfd35dc60 100644 --- a/src/devices/pcix_device.c +++ b/src/devices/pcix_device.c @@ -56,7 +56,7 @@ static void pcix_tune_dev(device_t dev) /* Don't attempt to handle PCI-X errors. */ cmd &= ~PCI_X_CMD_DPERR_E; - /* Enable Relaxed Ordering. */ + /* Enable relaxed ordering. */ cmd |= PCI_X_CMD_ERO; if (orig_cmd != cmd) @@ -108,6 +108,7 @@ const char *pcix_speed(u16 sstatus) result = pcix_533mhz; break; } + return result; } |