summaryrefslogtreecommitdiff
path: root/kexec/proc_iomem.c
blob: 85daa85fe72ac34f5baf303a59345993dd4619b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "kexec.h"

static const char proc_iomem_str[] = "/proc/iomem";

/*
 * Allow an architecture specific implementation of this
 * function to override the location of a file looking a lot
 * like /proc/iomem
 */
const char *proc_iomem(void)
{
        return proc_iomem_str;
}