Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8b70da1a094fb781d49a811fd2368907adc92b8d
Commit:     8b70da1a094fb781d49a811fd2368907adc92b8d
Parent:     5f725fe92cc2e75892b237e863d5f695fb634bb2
Author:     Cyrill Gorcunov <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 2 13:30:08 2007 -0700
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Wed Oct 3 12:02:44 2007 +1000

    [POWERPC] Sky Cpu: use C99 style for struct init
    
    This changes structure item init format to C99, and removes useless
    structure items init.
    
    Signed-off-by: Cyrill Gorcunov <[EMAIL PROTECTED]>
    Cc: Benjamin Herrenschmidt <[EMAIL PROTECTED]>
    Cc: Kumar Gala <[EMAIL PROTECTED]>
    Cc: Brian Waite <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 drivers/misc/hdpuftrs/hdpu_cpustate.c |   21 +++++++++------------
 1 files changed, 9 insertions(+), 12 deletions(-)

diff --git a/drivers/misc/hdpuftrs/hdpu_cpustate.c 
b/drivers/misc/hdpuftrs/hdpu_cpustate.c
index b16742c..32f65a3 100644
--- a/drivers/misc/hdpuftrs/hdpu_cpustate.c
+++ b/drivers/misc/hdpuftrs/hdpu_cpustate.c
@@ -170,21 +170,18 @@ static struct platform_driver hdpu_cpustate_driver = {
  *     The various file operations we support.
  */
 static const struct file_operations cpustate_fops = {
-      owner:   THIS_MODULE,
-      open:    cpustate_open,
-      release: cpustate_release,
-      read:    cpustate_read,
-      write:   cpustate_write,
-      fasync:  NULL,
-      poll:    NULL,
-      ioctl:   NULL,
-      llseek:  no_llseek,
+      .owner   = THIS_MODULE,
+      .open    = cpustate_open,
+      .release = cpustate_release,
+      .read    = cpustate_read,
+      .write   = cpustate_write,
+      .llseek  = no_llseek,
 };
 
 static struct miscdevice cpustate_dev = {
-       MISC_DYNAMIC_MINOR,
-       "sky_cpustate",
-       &cpustate_fops,
+       .minor  = MISC_DYNAMIC_MINOR,
+       .name   = "sky_cpustate",
+       .fops   = &cpustate_fops,
 };
 
 static int hdpu_cpustate_probe(struct platform_device *pdev)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to