Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317300
b: refs/heads/master
c: c810a39
h: refs/heads/master
v: v3
  • Loading branch information
Sachin Kamat authored and Greg Kroah-Hartman committed Jun 12, 2012
1 parent 821be74 commit f947663
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 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: 2f0b9d082e5d0056a3aca4be038483a564849196
refs/heads/master: c810a399798022d545191e2daaca0368623c15d3
14 changes: 8 additions & 6 deletions trunk/drivers/staging/android/ashmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
** GNU General Public License for more details.
*/

#define pr_fmt(fmt) "ashmem: " fmt

#include <linux/module.h>
#include <linux/file.h>
#include <linux/fs.h>
Expand Down Expand Up @@ -707,27 +709,27 @@ static int __init ashmem_init(void)
sizeof(struct ashmem_area),
0, 0, NULL);
if (unlikely(!ashmem_area_cachep)) {
printk(KERN_ERR "ashmem: failed to create slab cache\n");
pr_err("failed to create slab cache\n");
return -ENOMEM;
}

ashmem_range_cachep = kmem_cache_create("ashmem_range_cache",
sizeof(struct ashmem_range),
0, 0, NULL);
if (unlikely(!ashmem_range_cachep)) {
printk(KERN_ERR "ashmem: failed to create slab cache\n");
pr_err("failed to create slab cache\n");
return -ENOMEM;
}

ret = misc_register(&ashmem_misc);
if (unlikely(ret)) {
printk(KERN_ERR "ashmem: failed to register misc device!\n");
pr_err("failed to register misc device!\n");
return ret;
}

register_shrinker(&ashmem_shrinker);

printk(KERN_INFO "ashmem: initialized\n");
pr_info("initialized\n");

return 0;
}
Expand All @@ -740,12 +742,12 @@ static void __exit ashmem_exit(void)

ret = misc_deregister(&ashmem_misc);
if (unlikely(ret))
printk(KERN_ERR "ashmem: failed to unregister misc device!\n");
pr_err("failed to unregister misc device!\n");

kmem_cache_destroy(ashmem_range_cachep);
kmem_cache_destroy(ashmem_area_cachep);

printk(KERN_INFO "ashmem: unloaded\n");
pr_info("unloaded\n");
}

module_init(ashmem_init);
Expand Down
10 changes: 6 additions & 4 deletions trunk/drivers/staging/android/logger.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* GNU General Public License for more details.
*/

#define pr_fmt(fmt) "logger: " fmt

#include <linux/sched.h>
#include <linux/module.h>
#include <linux/fs.h>
Expand Down Expand Up @@ -621,13 +623,13 @@ static int __init create_log(char *log_name, int size)
/* finally, initialize the misc device for this log */
ret = misc_register(&log->misc);
if (unlikely(ret)) {
printk(KERN_ERR "logger: failed to register misc "
"device for log '%s'!\n", log->misc.name);
pr_err("failed to register misc device for log '%s'!\n",
log->misc.name);
goto out_free_log;
}

printk(KERN_INFO "logger: created %luK log '%s'\n",
(unsigned long) log->size >> 10, log->misc.name);
pr_info("created %luK log '%s'\n",
(unsigned long) log->size >> 10, log->misc.name);

return 0;

Expand Down
4 changes: 3 additions & 1 deletion trunk/drivers/staging/android/ram_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
*
*/

#define pr_fmt(fmt) "ram_console: " fmt

#include <linux/console.h>
#include <linux/init.h>
#include <linux/module.h>
Expand Down Expand Up @@ -162,7 +164,7 @@ static int __init ram_console_late_init(void)

entry = create_proc_entry("last_kmsg", S_IFREG | S_IRUGO, NULL);
if (!entry) {
printk(KERN_ERR "ram_console: failed to create proc entry\n");
pr_err("failed to create proc entry\n");
persistent_ram_free_old(prz);
return 0;
}
Expand Down
4 changes: 3 additions & 1 deletion trunk/drivers/staging/android/timed_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
*
*/

#define pr_fmt(fmt) "timed_output: " fmt

#include <linux/module.h>
#include <linux/types.h>
#include <linux/device.h>
Expand Down Expand Up @@ -90,7 +92,7 @@ int timed_output_dev_register(struct timed_output_dev *tdev)

err_create_file:
device_destroy(timed_output_class, MKDEV(0, tdev->index));
printk(KERN_ERR "timed_output: Failed to register driver %s\n",
pr_err("failed to register driver %s\n",
tdev->name);

return ret;
Expand Down

0 comments on commit f947663

Please sign in to comment.