cpuinfo.c (155433cb365ee4666bdf7c3c7bc2978b17be36a4) | cpuinfo.c (02f7760e6e5c3d726cd9622749cdae17c571b9a3) |
---|---|
1/* 2 * Record and handle CPU attributes. 3 * 4 * Copyright (C) 2014 ARM Ltd. 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17#include <asm/arch_timer.h> | 1/* 2 * Record and handle CPU attributes. 3 * 4 * Copyright (C) 2014 ARM Ltd. 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17#include <asm/arch_timer.h> |
18#include <asm/cachetype.h> | 18#include <asm/cache.h> |
19#include <asm/cpu.h> 20#include <asm/cputype.h> 21#include <asm/cpufeature.h> 22 23#include <linux/bitops.h> 24#include <linux/bug.h> 25#include <linux/compat.h> 26#include <linux/elf.h> --- 336 unchanged lines hidden --- | 19#include <asm/cpu.h> 20#include <asm/cputype.h> 21#include <asm/cpufeature.h> 22 23#include <linux/bitops.h> 24#include <linux/bug.h> 25#include <linux/compat.h> 26#include <linux/elf.h> --- 336 unchanged lines hidden --- |