[S390] Fix sparse warnings.
[deliverable/linux.git] / arch / s390 / kernel / profile.c
CommitLineData
1da177e4
LT
1/*
2 * arch/s390/kernel/profile.c
3 *
4 * Copyright (C) 2003 IBM Deutschland Entwicklung GmbH, IBM Corporation
5 * Author(s): Thomas Spatzier (tspat@de.ibm.com)
6 *
7 */
8#include <linux/proc_fs.h>
9#include <linux/profile.h>
10
11static struct proc_dir_entry * root_irq_dir;
12
13void init_irq_proc(void)
14{
15 /* create /proc/irq */
d2c993d8 16 root_irq_dir = proc_mkdir("irq", NULL);
1da177e4
LT
17
18 /* create /proc/irq/prof_cpu_mask */
19 create_prof_cpu_mask(root_irq_dir);
20}
This page took 0.131223 seconds and 5 git commands to generate.