[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>

authored by Christophe Lucas and committed by Greg Kroah-Hartman 20dd026d 49a1fd60

+4 -4
+4 -4
Documentation/firmware_class/firmware_sample_driver.c
··· 32 u8 buf[size+1]; 33 memcpy(buf, firmware, size); 34 buf[size] = '\0'; 35 - printk("firmware_sample_driver: firmware: %s\n", buf); 36 } 37 38 static void sample_probe_default(void) 39 { 40 /* uses the default method to get the firmware */ 41 const struct firmware *fw_entry; 42 - printk("firmware_sample_driver: a ghost device got inserted :)\n"); 43 44 if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0) 45 { ··· 61 62 /* NOTE: This currently doesn't work */ 63 64 - printk("firmware_sample_driver: a ghost device got inserted :)\n"); 65 66 if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0) 67 { ··· 83 return; 84 } 85 86 - printk("firmware_sample_driver: device pointer \"%s\"\n", 87 (char *)context); 88 sample_firmware_load(fw->data, fw->size); 89 }
··· 32 u8 buf[size+1]; 33 memcpy(buf, firmware, size); 34 buf[size] = '\0'; 35 + printk(KERN_INFO "firmware_sample_driver: firmware: %s\n", buf); 36 } 37 38 static void sample_probe_default(void) 39 { 40 /* uses the default method to get the firmware */ 41 const struct firmware *fw_entry; 42 + printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n"); 43 44 if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0) 45 { ··· 61 62 /* NOTE: This currently doesn't work */ 63 64 + printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n"); 65 66 if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0) 67 { ··· 83 return; 84 } 85 86 + printk(KERN_INFO "firmware_sample_driver: device pointer \"%s\"\n", 87 (char *)context); 88 sample_firmware_load(fw->data, fw->size); 89 }