Message ID | 20210211093552.GA5375@machine1 (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | scsi: qla2xxx: Removed extra space in variable declaration. | expand |
Apologies for missing a note about change. Will correct it now and send updated version. On 2/11/21 3:05 PM, Milan P. Gandhi wrote: > Signed-off-by: Milan P. Gandhi <mgandhi@redhat.com> > --- > diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c > index ab45ac1e5a72..7f2db8badb6d 100644 > --- a/drivers/scsi/qla2xxx/qla_attr.c > +++ b/drivers/scsi/qla2xxx/qla_attr.c > @@ -226,7 +226,7 @@ qla2x00_sysfs_write_nvram(struct file *filp, struct kobject *kobj, > struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, > struct device, kobj))); > struct qla_hw_data *ha = vha->hw; > - uint16_t cnt; > + uint16_t cnt; > > if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size || > !ha->isp_ops->write_nvram) >
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index ab45ac1e5a72..7f2db8badb6d 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c @@ -226,7 +226,7 @@ qla2x00_sysfs_write_nvram(struct file *filp, struct kobject *kobj, struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, struct device, kobj))); struct qla_hw_data *ha = vha->hw; - uint16_t cnt; + uint16_t cnt; if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size || !ha->isp_ops->write_nvram)
Signed-off-by: Milan P. Gandhi <mgandhi@redhat.com> ---