Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91746
b: refs/heads/master
c: 58da495
h: refs/heads/master
v: v3
  • Loading branch information
Pavel Machek authored and Jesper Juhl committed Apr 21, 2008
1 parent bface30 commit 832e99d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 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: 6f69a6d776f6f5921d73ad9648e43d9b59afeff4
refs/heads/master: 58da495065134b45799bd02988ab658c3da6af25
14 changes: 6 additions & 8 deletions trunk/Documentation/firmware_class/firmware_sample_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ static void sample_probe_default(void)
const struct firmware *fw_entry;
printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n");

if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0)
{
if (request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0) {
printk(KERN_ERR
"firmware_sample_driver: Firmware not available\n");
return;
Expand All @@ -56,8 +55,7 @@ static void sample_probe_specific(void)

printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n");

if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0)
{
if (request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0) {
printk(KERN_ERR
"firmware_sample_driver: Firmware load failed\n");
return;
Expand All @@ -70,7 +68,7 @@ static void sample_probe_specific(void)
}
static void sample_probe_async_cont(const struct firmware *fw, void *context)
{
if(!fw){
if (!fw) {
printk(KERN_ERR
"firmware_sample_driver: firmware load failed\n");
return;
Expand All @@ -88,9 +86,8 @@ static void sample_probe_async(void)
"sample_driver_fw", &ghost_device,
"my device pointer",
sample_probe_async_cont);
if(error){
printk(KERN_ERR
"firmware_sample_driver:"
if (error) {
printk(KERN_ERR "firmware_sample_driver:"
" request_firmware_nowait failed\n");
}
}
Expand All @@ -105,6 +102,7 @@ static int sample_init(void)
sample_probe_async();
return 0;
}

static void __exit sample_exit(void)
{
}
Expand Down

0 comments on commit 832e99d

Please sign in to comment.