https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 52526f0de990576ec59bff0b9b4ca575223fdefd authored by Jason Self on 07 April 2014, 08:51:49 UTC
Linux-libre 3.12.17-gnu
Tip revision: 52526f0
module.h
#ifndef _ALPHA_MODULE_H
#define _ALPHA_MODULE_H

#include <asm-generic/module.h>

struct mod_arch_specific
{
	unsigned int gotsecindex;
};

#define ARCH_SHF_SMALL SHF_ALPHA_GPREL

#ifdef MODULE
asm(".section .got,\"aws\",@progbits; .align 3; .previous");
#endif

#endif /*_ALPHA_MODULE_H*/
back to top