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

Commit 46663d05 authored by Steven Rostedt's avatar Steven Rostedt Committed by Hans-Christian Egtvedt
Browse files

avr32: use Kbuild infrastructure to handle the asm-generic headers



Use kbuild to add asm-generic headers that do nothing, also remove the arch
specific wrapper headers.

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 avatarHans-Christian Egtvedt <egtvedt@samfundet.no>
parent 15c03dd4
Loading
Loading
Loading
Loading
+15 −1
Original line number Diff line number Diff line

generic-y	+= clkdev.h
generic-y       += cputime.h
generic-y       += delay.h
generic-y       += device.h
generic-y       += div64.h
generic-y       += emergency-restart.h
generic-y	+= exec.h
generic-y	+= trace_clock.h
generic-y       += futex.h
generic-y       += irq_regs.h
generic-y	+= param.h
generic-y       += local.h
generic-y       += local64.h
generic-y       += percpu.h
generic-y       += scatterlist.h
generic-y       += sections.h
generic-y       += topology.h
generic-y	+= trace_clock.h
generic-y       += xor.h

arch/avr32/include/asm/cputime.h

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

#include <asm-generic/cputime.h>

#endif /* __ASM_AVR32_CPUTIME_H */

arch/avr32/include/asm/delay.h

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
#include <asm-generic/delay.h>

arch/avr32/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/avr32/include/asm/div64.h

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

#include <asm-generic/div64.h>

#endif /* __ASM_AVR32_DIV64_H */
Loading