aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-arm/procinfo.h
blob: 9d3feb7d0a03a4b375e8467452d60d963358ec62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * include/asm-arm/procinfo.h
 *
 * Bamvor Jian Zhang <bjzhang@suse.com>
 * Copyright (c) 2013 SUSE
 *
 * base on linux/arch/arm/include/asm/procinfo.h
 * Copyright (C) 1996-1999 Russell King
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef __ASM_ARM_PROCINFO_H
#define __ASM_ARM_PROCINFO_H

struct proc_info_list {
	unsigned int		cpu_val;
	unsigned int		cpu_mask;
    void                (*cpu_init)(void);
};

#endif