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

Commit 094167be authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: convert simple headers to asm-generic

parent 3be5646c
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
#ifndef __ASMBFIN_AUXVEC_H
#define __ASMBFIN_AUXVEC_H

#endif
#include <asm-generic/auxvec.h>
+1 −16
Original line number Diff line number Diff line
/*
 *  include/asm-blackfin/bugs.h
 *
 *  Copyright (C) 1994  Linus Torvalds
 */

/*
 * This is included by init/main.c to check for architecture-dependent bugs.
 *
 * Needs:
 *	void check_bugs(void);
 */

static void check_bugs(void)
{
}
#include <asm-generic/bugs.h>
+0 −5
Original line number Diff line number Diff line
#ifndef __BLACKFIN_CPUTIME_H
#define __BLACKFIN_CPUTIME_H

#include <asm-generic/cputime.h>

#endif				/* __BLACKFIN_CPUTIME_H */
+1 −23
Original line number Diff line number Diff line
#ifndef _BLACKFIN_CURRENT_H
#define _BLACKFIN_CURRENT_H
/*
 *	current.h
 *	(C) Copyright 2000, Lineo, David McCullough <davidm@lineo.com>
 *
 *	rather than dedicate a register (as the m68k source does), we
 *	just keep a global,  we should probably just change it all to be
 *	current and lose _current_task.
 */
#include <linux/thread_info.h>

struct task_struct;

static inline struct task_struct *get_current(void) __attribute__ ((__const__));
static inline struct task_struct *get_current(void)
{
	return (current_thread_info()->task);
}

#define	current	(get_current())

#endif				/* _BLACKFIN_CURRENT_H */
#include <asm-generic/current.h>
+0 −6
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>
Loading