diff options
Diffstat (limited to 'arch/ia64/hp')
-rw-r--r-- | arch/ia64/hp/common/sba_iommu.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/ia64/hp/common/sba_iommu.c b/arch/ia64/hp/common/sba_iommu.c index 6ce729f46de8..34421aed1e2a 100644 --- a/arch/ia64/hp/common/sba_iommu.c +++ b/arch/ia64/hp/common/sba_iommu.c | |||
@@ -1932,15 +1932,13 @@ static const struct file_operations ioc_fops = { | |||
1932 | static void __init | 1932 | static void __init |
1933 | ioc_proc_init(void) | 1933 | ioc_proc_init(void) |
1934 | { | 1934 | { |
1935 | struct proc_dir_entry *dir, *entry; | 1935 | struct proc_dir_entry *dir; |
1936 | 1936 | ||
1937 | dir = proc_mkdir("bus/mckinley", NULL); | 1937 | dir = proc_mkdir("bus/mckinley", NULL); |
1938 | if (!dir) | 1938 | if (!dir) |
1939 | return; | 1939 | return; |
1940 | 1940 | ||
1941 | entry = create_proc_entry(ioc_list->name, 0, dir); | 1941 | proc_create(ioc_list->name, 0, dir, &ioc_fops); |
1942 | if (entry) | ||
1943 | entry->proc_fops = &ioc_fops; | ||
1944 | } | 1942 | } |
1945 | #endif | 1943 | #endif |
1946 | 1944 | ||