* [PATCH] C99 initializers for ipmi_devintf.c
@ 2003-02-27 21:40 Art Haas
0 siblings, 0 replies; only message in thread
From: Art Haas @ 2003-02-27 21:40 UTC (permalink / raw)
To: Corey Minyard, source, linux-kernel; +Cc: Linus Torvalds
Hi.
This patch converts the file to use C99 initializers. It is against the
current BK.
Art Haas
===== drivers/char/ipmi/ipmi_devintf.c 1.1 vs edited =====
--- 1.1/drivers/char/ipmi/ipmi_devintf.c Tue Nov 26 16:06:25 2002
+++ edited/drivers/char/ipmi/ipmi_devintf.c Thu Feb 27 10:26:14 2003
@@ -105,7 +105,7 @@
static struct ipmi_user_hndl ipmi_hndlrs =
{
- ipmi_recv_hndl : file_receive_handler
+ .ipmi_recv_hndl = file_receive_handler,
};
static int ipmi_open(struct inode *inode, struct file *file)
@@ -424,12 +424,12 @@
static struct file_operations ipmi_fops = {
- owner: THIS_MODULE,
- ioctl: ipmi_ioctl,
- open: ipmi_open,
- release: ipmi_release,
- fasync: ipmi_fasync,
- poll: ipmi_poll
+ .owner = THIS_MODULE,
+ .ioctl = ipmi_ioctl,
+ .open = ipmi_open,
+ .release = ipmi_release,
+ .fasync = ipmi_fasync,
+ .poll = ipmi_poll,
};
#define DEVICE_NAME "ipmidev"
@@ -468,8 +468,8 @@
static struct ipmi_smi_watcher smi_watcher =
{
- new_smi : ipmi_new_smi,
- smi_gone : ipmi_smi_gone
+ .new_smi = ipmi_new_smi,
+ .smi_gone = ipmi_smi_gone,
};
static __init int init_ipmi_devintf(void)
--
They that can give up essential liberty to obtain a little temporary safety
deserve neither liberty nor safety.
-- Benjamin Franklin, Historical Review of Pennsylvania, 1759
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-27 21:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-27 21:40 [PATCH] C99 initializers for ipmi_devintf.c Art Haas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox