Author: bencollins
Date: 2002-11-18 13:44:04 -0500 (Mon, 18 Nov 2002)
New Revision: 692
Modified:
trunk/raw1394.c
Log:
Use C99 initializers, noted by Art Haas.
Modified: trunk/raw1394.c
==============================================================================
--- trunk/raw1394.c (original)
+++ trunk/raw1394.c 2002-11-18 13:44:04.000000000 -0500
@@ -92,10 +92,10 @@
static int arm_lock64 (struct hpsb_host *host, int nodeid, octlet_t *store,
u64 addr, octlet_t data, octlet_t arg, int ext_tcode, u16 flags);
static struct hpsb_address_ops arm_ops = {
- read: arm_read,
- write: arm_write,
- lock: arm_lock,
- lock64: arm_lock64,
+ .read = arm_read,
+ .write = arm_write,
+ .lock = arm_lock,
+ .lock64 = arm_lock64,
};
static void queue_complete_cb(struct pending_request *req);
|