|
@@ -33,10 +33,8 @@ static struct file_operations mark_ops = {
|
|
static int example_init(void)
|
|
static int example_init(void)
|
|
{
|
|
{
|
|
printk(KERN_ALERT "example init\n");
|
|
printk(KERN_ALERT "example init\n");
|
|
- pentry_example = create_proc_entry("marker-example", 0444, NULL);
|
|
|
|
- if (pentry_example)
|
|
|
|
- pentry_example->proc_fops = &mark_ops;
|
|
|
|
- else
|
|
|
|
|
|
+ pentry_example = proc_create("marker-example", 0444, NULL, &mark_ops);
|
|
|
|
+ if (!pentry_example)
|
|
return -EPERM;
|
|
return -EPERM;
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|