diff options
author | H. Peter Anvin <hpa@zytor.com> | 2011-05-04 16:15:12 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2011-05-04 16:15:12 -0700 |
commit | 3645d02eec448c00a959992b58efaabcf8b2c698 (patch) | |
tree | e02a511a34b0f3521e10555153e2f3b69ac717cc /core/lwip | |
parent | 295a7647ab3089b95624d94f20595d578d9ecc9d (diff) | |
download | syslinux-3645d02eec448c00a959992b58efaabcf8b2c698.tar.gz |
pxe, undiif: print UNDI information during initialization
We may need this information for debugging.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/lwip')
-rw-r--r-- | core/lwip/src/netif/undiif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/lwip/src/netif/undiif.c b/core/lwip/src/netif/undiif.c index e49e36cf..695abd6b 100644 --- a/core/lwip/src/netif/undiif.c +++ b/core/lwip/src/netif/undiif.c @@ -232,9 +232,9 @@ low_level_init(struct netif *netif) pxe_call(PXENV_UNDI_GET_INFORMATION, &undi_info); pxe_call(PXENV_UNDI_GET_IFACE_INFO, &undi_iface); - dprintf("UNDI: baseio %04x int %d MTU %d type %d \"%s\" flags 0x%x\n", - undi_info.BaseIo, undi_info.IntNumber, undi_info.MaxTranUnit, - undi_info.HwType, undi_iface.IfaceType, undi_iface.ServiceFlags); + printf("UNDI: baseio %04x int %d MTU %d type %d \"%s\" flags 0x%x\n", + undi_info.BaseIo, undi_info.IntNumber, undi_info.MaxTranUnit, + undi_info.HwType, undi_iface.IfaceType, undi_iface.ServiceFlags); pxe_irq_vector = undi_info.IntNumber; if (!(undi_iface.ServiceFlags & PXE_UNDI_IFACE_FLAG_IRQ)) |