Apparently I'm not the only one who forgets which way the outb and
[coreboot.git] / src / devices / smbus_ops.c
index e2cd0543eb1bcf2dbb8986ea81c7441695d0e116..acf0b1f39d19e7d84f70bd1133a54031ca62f80c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the LinuxBIOS project.
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2004 Tyan
  * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
@@ -34,7 +34,6 @@ struct bus *get_pbus_smbus(device_t dev)
        if (!pbus || !pbus->dev || !pbus->dev->ops || !pbus->dev->ops->ops_smbus_bus) {
                printk_alert("%s Cannot find smbus bus operations", dev_path(dev));
                die("");
-               for(;;);
        }
        return pbus;
 }