A bunch of create_proc_dir_entry() calls creating directories had crept in
authorDave Airlie <airlied@linux.ie>
Fri, 11 Nov 2005 08:59:57 +0000 (08:59 +0000)
committerDave Airlie <airlied@linux.ie>
Fri, 11 Nov 2005 08:59:57 +0000 (08:59 +0000)
    since the last sweep; converted to proc_mkdir().
From: Al Viro (via kernel)

linux-core/drm_drv.c
linux-core/drm_proc.c

index 1e711c0..b274da2 100644 (file)
@@ -433,7 +433,7 @@ static int __init drm_core_init(void)
                goto err_p2;
        }
 
-       drm_proc_root = create_proc_entry("dri", S_IFDIR, NULL);
+       drm_proc_root = proc_mkdir("dri", NULL);
        if (!drm_proc_root) {
                DRM_ERROR("Cannot create /proc/dri\n");
                ret = -1;
index 3e2b3ba..8e9c475 100644 (file)
@@ -95,7 +95,7 @@ int drm_proc_init(drm_device_t * dev, int minor,
        char name[64];
 
        sprintf(name, "%d", minor);
-       *dev_root = create_proc_entry(name, S_IFDIR, root);
+       *dev_root = proc_mkdir(name, root);
        if (!*dev_root) {
                DRM_ERROR("Cannot create /proc/dri/%s\n", name);
                return -1;