]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[intel] Display PBS value when applying ICH errata workaround
authorMichael Brown <mcb30@ipxe.org>
Wed, 20 Aug 2014 21:59:54 +0000 (22:59 +0100)
committerMichael Brown <mcb30@ipxe.org>
Wed, 20 Aug 2014 21:59:54 +0000 (22:59 +0100)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/drivers/net/intel.c

index f2ee4f4d247baeb6014b4ee1f469914f26030991..8a3cae1f72a62b82212b4fcb08f7a481f08a0ad1 100644 (file)
@@ -295,8 +295,8 @@ static int intel_reset ( struct intel_nic *intel ) {
         */
        pbs = readl ( intel->regs + INTEL_PBS );
        if ( ( pbs == 0x14 ) || ( pbs == 0x18 ) ) {
-               DBGC ( intel, "INTEL %p WARNING: applying ICH PBS/PBA errata\n",
-                      intel );
+               DBGC ( intel, "INTEL %p WARNING: applying ICH PBS/PBA errata "
+                      "(found PBS %#08x)\n", intel, pbs );
                writel ( 0x08, intel->regs + INTEL_PBA );
                writel ( 0x10, intel->regs + INTEL_PBS );
        }