Hi Michael,
>> pdev = bus->host_pci;
>> mutex_init(&bus->sprom_mutex);
>> -err = device_create_file(&pdev->dev, &dev_attr_ssb_sprom);
>> -if (err)
>> -goto out;
>> -
>> -out:
>> -return err;
>> +return device_create_file(&pdev->dev, &dev_attr_ssb_sprom);
>> }
On Fri, 19 Jun 2015 14:23:45 +0530
Maninder Singh wrote:
> This patch removes unnecessary label "out" and
> some restructring for using device_create_file directly.
>
> Signed-off-by: Maninder Singh
> Reviewed-by: Rohit Thapliyal
> ---
> drivers/ssb/pci.c |8 +---
> 1 files changed, 1
This patch removes unnecessary label "out" and
some restructring for using device_create_file directly.
Signed-off-by: Maninder Singh
Reviewed-by: Rohit Thapliyal
---
drivers/ssb/pci.c |8 +---
1 files changed, 1 insertions(+), 7 deletions(-)
diff --git a/drivers/ssb/pci.c b/drivers/ss