https://jxself.org/git/linux-libre.git
Raw File
Tip revision: a0365d659a33e6dad78103231cc9a9303be16a64 authored by Jason Self on 13 October 2013, 23:09:14 UTC
Linux-libre 3.10.16-gnu
Tip revision: a0365d6
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