blob: 231a149b3f77df96eb59fb8dcc0eda22449d614d [file] [log] [blame]
Robin Getz96f10502009-09-24 14:11:24 +00001/*
Mike Frysinger96956452011-06-17 17:54:40 -04002 * Copyright 2004-2008 Analog Devices Inc.
3 *
4 * Licensed under the GPL-2 or later.
5 */
Robin Getz96f10502009-09-24 14:11:24 +00006
Bryan Wu1394f032007-05-06 14:50:22 -07007#ifndef _ASM_BFIN_MODULE_H
8#define _ASM_BFIN_MODULE_H
9
David Howells786d35d2012-09-28 14:31:03 +093010#include <asm-generic/module.h>
Bryan Wu1394f032007-05-06 14:50:22 -070011
12struct mod_arch_specific {
13 Elf_Shdr *text_l1;
14 Elf_Shdr *data_a_l1;
15 Elf_Shdr *bss_a_l1;
16 Elf_Shdr *data_b_l1;
17 Elf_Shdr *bss_b_l1;
Sonic Zhang262c3822008-07-19 15:42:41 +080018 Elf_Shdr *text_l2;
19 Elf_Shdr *data_l2;
20 Elf_Shdr *bss_l2;
Bryan Wu1394f032007-05-06 14:50:22 -070021};
22#endif /* _ASM_BFIN_MODULE_H */