alistair23-linux/arch/metag/kernel/asm-offsets.c
James Hogan 5633004cc2 metag: Build infrastructure
Add metag build infrastructure.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
2013-03-02 20:09:54 +00:00

15 lines
242 B
C

/*
* This program is used to generate definitions needed by
* assembly language modules.
*
*/
#include <linux/kbuild.h>
#include <linux/thread_info.h>
int main(void)
{
DEFINE(THREAD_INFO_SIZE, sizeof(struct thread_info));
return 0;
}