aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorChristophe Lucas <clucas@rotomalug.org>2005-09-08 02:55:53 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-09 17:23:29 -0400
commit20dd026d7f5a6972dc78b4928a99620001fa547d (patch)
treeb2676a15c732f908bf85539d74fd36ee6cacf019 /Documentation
parent49a1fd60d2a8e671222515cf6055e91781278517 (diff)
[PATCH] printk : Documentation/firmware_class/firmware_sample_driver.c
printk() calls should include appropriate KERN_* constant. Signed-off-by: Christophe Lucas <clucas@rotomalug.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/firmware_class/firmware_sample_driver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/firmware_class/firmware_sample_driver.c b/Documentation/firmware_class/firmware_sample_driver.c
index e1c56a7e6583..4bef8c25172c 100644
--- a/Documentation/firmware_class/firmware_sample_driver.c
+++ b/Documentation/firmware_class/firmware_sample_driver.c
@@ -32,14 +32,14 @@ static void sample_firmware_load(char *firmware, int size)
32 u8 buf[size+1]; 32 u8 buf[size+1];
33 memcpy(buf, firmware, size); 33 memcpy(buf, firmware, size);
34 buf[size] = '\0'; 34 buf[size] = '\0';
35 printk("firmware_sample_driver: firmware: %s\n", buf); 35 printk(KERN_INFO "firmware_sample_driver: firmware: %s\n", buf);
36} 36}
37 37
38static void sample_probe_default(void) 38static void sample_probe_default(void)
39{ 39{
40 /* uses the default method to get the firmware */ 40 /* uses the default method to get the firmware */
41 const struct firmware *fw_entry; 41 const struct firmware *fw_entry;
42 printk("firmware_sample_driver: a ghost device got inserted :)\n"); 42 printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n");
43 43
44 if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0) 44 if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0)
45 { 45 {
@@ -61,7 +61,7 @@ static void sample_probe_specific(void)
61 61
62 /* NOTE: This currently doesn't work */ 62 /* NOTE: This currently doesn't work */
63 63
64 printk("firmware_sample_driver: a ghost device got inserted :)\n"); 64 printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n");
65 65
66 if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0) 66 if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0)
67 { 67 {
@@ -83,7 +83,7 @@ static void sample_probe_async_cont(const struct firmware *fw, void *context)
83 return; 83 return;
84 } 84 }
85 85
86 printk("firmware_sample_driver: device pointer \"%s\"\n", 86 printk(KERN_INFO "firmware_sample_driver: device pointer \"%s\"\n",
87 (char *)context); 87 (char *)context);
88 sample_firmware_load(fw->data, fw->size); 88 sample_firmware_load(fw->data, fw->size);
89} 89}