diff options
| author | Art Haas <ahaas@airmail.net> | 2002-11-17 18:11:38 -0800 |
|---|---|---|
| committer | David S. Miller <davem@nuts.ninka.net> | 2002-11-17 18:11:38 -0800 |
| commit | c041559ffc3177dc1b242b6003a511bcc97a3c2f (patch) | |
| tree | 3cef4558c15b14965346a946684b0f0ec5e64be0 | |
| parent | fcf34d2b8289c4e4376ba4bd675990ce625d952a (diff) | |
[PATCH] C99 initializers for drivers/telephony
| -rw-r--r-- | drivers/telephony/ixj.c | 14 | ||||
| -rw-r--r-- | drivers/telephony/phonedev.c | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/drivers/telephony/ixj.c b/drivers/telephony/ixj.c index d5caa08c1770..1b56a5ddbfb9 100644 --- a/drivers/telephony/ixj.c +++ b/drivers/telephony/ixj.c @@ -6765,13 +6765,13 @@ static int ixj_fasync(int fd, struct file *file_p, int mode) struct file_operations ixj_fops = { - owner: THIS_MODULE, - read: ixj_enhanced_read, - write: ixj_enhanced_write, - poll: ixj_poll, - ioctl: ixj_ioctl, - release: ixj_release, - fasync: ixj_fasync + .owner = THIS_MODULE, + .read = ixj_enhanced_read, + .write = ixj_enhanced_write, + .poll = ixj_poll, + .ioctl = ixj_ioctl, + .release = ixj_release, + .fasync = ixj_fasync }; static int ixj_linetest(IXJ *j) diff --git a/drivers/telephony/phonedev.c b/drivers/telephony/phonedev.c index d58a3777e8e7..a5b601923a54 100644 --- a/drivers/telephony/phonedev.c +++ b/drivers/telephony/phonedev.c @@ -135,8 +135,8 @@ void phone_unregister_device(struct phone_device *pfd) static struct file_operations phone_fops = { - owner: THIS_MODULE, - open: phone_open, + .owner = THIS_MODULE, + .open = phone_open, }; /* |
