Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2010 Texas Instruments Incorporated
4 * Author: Mark Salter (msalter@redhat.com)
5 */
6#ifndef _ASM_C6X_PROCINFO_H
7#define _ASM_C6X_PROCINFO_H
8
9#ifdef __KERNEL__
10
11struct proc_info_list {
12 unsigned int cpu_val;
13 unsigned int cpu_mask;
14 const char *arch_name;
15 const char *elf_name;
16 unsigned int elf_hwcap;
17};
18
19#else /* __KERNEL__ */
20#include <asm/elf.h>
21#warning "Please include asm/elf.h instead"
22#endif /* __KERNEL__ */
23
24#endif /* _ASM_C6X_PROCINFO_H */