summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions_system.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-08-26 10:31:47 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-08-26 10:31:47 -0400
commit325177c4a5691c2b95b7b24193f3ad8532cc3b31 (patch)
tree79475f7c83c20ed1eac9bc85cde532eef47ec152 /pts-core/functions/pts-functions_system.php
parent7b3d155b74bc9e6518251bcd2959acef1bcbe9d4 (diff)
downloadphoronix-test-suite-upstream-325177c4a5691c2b95b7b24193f3ad8532cc3b31.tar.gz
phoronix-test-suite-upstream-325177c4a5691c2b95b7b24193f3ad8532cc3b31.tar.xz
phoronix-test-suite-upstream-325177c4a5691c2b95b7b24193f3ad8532cc3b31.zip
pts-core: The read_pci() tags don't need to be postfixed with a colon
any longer
Diffstat (limited to 'pts-core/functions/pts-functions_system.php')
-rw-r--r--pts-core/functions/pts-functions_system.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/functions/pts-functions_system.php b/pts-core/functions/pts-functions_system.php
index ebc7f20..4924847 100644
--- a/pts-core/functions/pts-functions_system.php
+++ b/pts-core/functions/pts-functions_system.php
@@ -173,11 +173,11 @@ function kernel_arch()
function motherboard_chipset_string()
{
// Returns motherboard chipset
- $info = read_pci("Host bridge:");
+ $info = read_pci("Host bridge");
if(count(explode(" ", $info)) == 1)
{
- $bridge = read_pci(array("Bridge:", "PCI bridge:"));
+ $bridge = read_pci(array("Bridge", "PCI bridge"));
if($bridge != "Unknown")
{