Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 114897
b: refs/heads/master
c: 266a813
h: refs/heads/master
i:
  114895: 379b10c
v: v3
  • Loading branch information
Bjorn Helgaas authored and Linus Torvalds committed Oct 16, 2008
1 parent e214898 commit 3149848
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b46f69cd24b9020433f8f153e7d9194b5bfdf5e2
refs/heads/master: 266a813c083d67886d89f1066ea6355857b51f83
24 changes: 10 additions & 14 deletions trunk/drivers/base/firmware_class.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ static ssize_t firmware_loading_store(struct device *dev,
}
/* fallthrough */
default:
printk(KERN_ERR "%s: unexpected value (%d)\n", __func__,
loading);
dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
/* fallthrough */
case -1:
fw_load_abort(fw_priv);
Expand Down Expand Up @@ -309,7 +308,7 @@ static int fw_register_device(struct device **dev_p, const char *fw_name,
*dev_p = NULL;

if (!fw_priv || !f_dev) {
printk(KERN_ERR "%s: kmalloc failed\n", __func__);
dev_err(device, "%s: kmalloc failed\n", __func__);
retval = -ENOMEM;
goto error_kfree;
}
Expand All @@ -329,8 +328,7 @@ static int fw_register_device(struct device **dev_p, const char *fw_name,
f_dev->uevent_suppress = 1;
retval = device_register(f_dev);
if (retval) {
printk(KERN_ERR "%s: device_register failed\n",
__func__);
dev_err(device, "%s: device_register failed\n", __func__);
goto error_kfree;
}
*dev_p = f_dev;
Expand Down Expand Up @@ -363,15 +361,13 @@ static int fw_setup_device(struct firmware *fw, struct device **dev_p,
fw_priv->fw = fw;
retval = sysfs_create_bin_file(&f_dev->kobj, &fw_priv->attr_data);
if (retval) {
printk(KERN_ERR "%s: sysfs_create_bin_file failed\n",
__func__);
dev_err(device, "%s: sysfs_create_bin_file failed\n", __func__);
goto error_unreg;
}

retval = device_create_file(f_dev, &dev_attr_loading);
if (retval) {
printk(KERN_ERR "%s: device_create_file failed\n",
__func__);
dev_err(device, "%s: device_create_file failed\n", __func__);
goto error_unreg;
}

Expand Down Expand Up @@ -401,8 +397,8 @@ _request_firmware(const struct firmware **firmware_p, const char *name,

*firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
if (!firmware) {
printk(KERN_ERR "%s: kmalloc(struct firmware) failed\n",
__func__);
dev_err(device, "%s: kmalloc(struct firmware) failed\n",
__func__);
retval = -ENOMEM;
goto out;
}
Expand All @@ -411,15 +407,15 @@ _request_firmware(const struct firmware **firmware_p, const char *name,
builtin++) {
if (strcmp(name, builtin->name))
continue;
printk(KERN_INFO "firmware: using built-in firmware %s\n",
name);
dev_info(device, "firmware: using built-in firmware %s\n",
name);
firmware->size = builtin->size;
firmware->data = builtin->data;
return 0;
}

if (uevent)
printk(KERN_INFO "firmware: requesting %s\n", name);
dev_info(device, "firmware: requesting %s\n", name);

retval = fw_setup_device(firmware, &f_dev, name, device, uevent);
if (retval)
Expand Down

0 comments on commit 3149848

Please sign in to comment.