Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 795ca178 authored by Max Filippov's avatar Max Filippov Committed by Chris Zankel
Browse files

xtensa: Use Kbuild infrastructure to handle asm-generic headers



Use Kbuild infrastructure to handle the asm-generic headers
and remove the wrapper headers that call them.

This only affects headers that do nothing but include the generic
equivalent. It does not touch any header that does a little more.

Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent 83596729
Loading
Loading
Loading
Loading
+26 −1
Original line number Diff line number Diff line

generic-y += bitsperlong.h
generic-y += bug.h
generic-y += clkdev.h
generic-y += cputime.h
generic-y += device.h
generic-y += div64.h
generic-y += emergency-restart.h
generic-y += errno.h
generic-y += exec.h
generic-y += fcntl.h
generic-y += futex.h
generic-y += hardirq.h
generic-y += ioctl.h
generic-y += irq_regs.h
generic-y += kdebug.h
generic-y += kmap_types.h
generic-y += kvm_para.h
generic-y += local.h
generic-y += local64.h
generic-y += percpu.h
generic-y += resource.h
generic-y += scatterlist.h
generic-y += sections.h
generic-y += siginfo.h
generic-y += statfs.h
generic-y += termios.h
generic-y += topology.h
generic-y += xor.h

arch/xtensa/include/asm/bug.h

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
/*
 * include/asm-xtensa/bug.h
 *
 * Macros to cause a 'bug' message.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2001 - 2005 Tensilica Inc.
 */

#ifndef _XTENSA_BUG_H
#define _XTENSA_BUG_H

#include <asm-generic/bug.h>

#endif	/* _XTENSA_BUG_H */

arch/xtensa/include/asm/cputime.h

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
#ifndef _XTENSA_CPUTIME_H
#define _XTENSA_CPUTIME_H

#include <asm-generic/cputime.h>

#endif /* _XTENSA_CPUTIME_H */

arch/xtensa/include/asm/device.h

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
/*
 * Arch specific extensions to struct device
 *
 * This file is released under the GPLv2
 */
#include <asm-generic/device.h>

arch/xtensa/include/asm/div64.h

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
/*
 * include/asm-xtensa/div64.h
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2001 - 2007 Tensilica Inc.
 */

#ifndef _XTENSA_DIV64_H
#define _XTENSA_DIV64_H

#include <asm-generic/div64.h>

#endif /* _XTENSA_DIV64_H */
Loading