]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
s390/sclp: avoid compile warning in sclp_pci_report
authorMartin Schwidefsky <schwidefsky@de.ibm.com>
Mon, 18 Apr 2016 07:52:05 +0000 (09:52 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Thu, 21 Apr 2016 07:51:17 +0000 (09:51 +0200)
Fix the initialization of a local variable to remove this warning:

All warnings (new ones prefixed by >>):

   drivers/s390/char/sclp_pci.c: In function 'sclp_pci_report':
>> drivers/s390/char/sclp_pci.c:127:9: warning: missing braces around initializer [-Wmissing-braces]
     struct sclp_req req = {0};
            ^
   drivers/s390/char/sclp_pci.c:127:9: warning: (near initialization for 'req.list') [-Wmissing-braces]

Fixes: 12283a4035691697 "s390/sclp: add error notification command"
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/char/sclp_pci.c

index 0c8973c45b48eda8eea9e1538e6fdaf46637d68d..4dbb3dfd4bc79cc4e22c5584ab2d8c440c5a9b36 100644 (file)
@@ -124,7 +124,7 @@ int sclp_pci_report(struct zpci_report_error_header *report, u32 fh, u32 fid)
 {
        DECLARE_COMPLETION_ONSTACK(completion);
        struct err_notify_sccb *sccb;
-       struct sclp_req req = {0};
+       struct sclp_req req;
        int ret;
 
        ret = sclp_pci_check_report(report);
@@ -147,6 +147,7 @@ int sclp_pci_report(struct zpci_report_error_header *report, u32 fh, u32 fid)
                goto out_unregister;
        }
 
+       memset(&req, 0, sizeof(req));
        req.callback_data = &completion;
        req.callback = sclp_pci_callback;
        req.command = SCLP_CMDW_WRITE_EVENT_DATA;