From: Michael Brown Date: Tue, 22 Jan 2008 18:50:24 +0000 (+0000) Subject: Use XFER_INIT() macro. X-Git-Url: http://git.etherboot.org/people/mcb30/gpxe.git/commitdiff_plain/84f99f781e405f90460f72cd3f5c1b5f97242f06 Use XFER_INIT() macro. --- diff --git a/src/interface/pxe/pxe_udp.c b/src/interface/pxe/pxe_udp.c index 0d6d1b74..40c2b2e5 100644 --- a/src/interface/pxe/pxe_udp.c +++ b/src/interface/pxe/pxe_udp.c @@ -111,13 +111,7 @@ static struct xfer_interface_operations pxe_udp_xfer_operations = { /** The PXE UDP connection */ static struct pxe_udp_connection pxe_udp = { - .xfer = { - .intf = { - .dest = &null_xfer.intf, - .refcnt = NULL, - }, - .op = &pxe_udp_xfer_operations, - }, + .xfer = XFER_INIT ( &pxe_udp_xfer_operations ), .local = { .sin_family = AF_INET, },