Linux Audio

Check our new training course

Loading...
v4.17
 
 1/*
 2 * OpenRISC or32_ksyms.c
 3 *
 4 * Linux architectural port borrowing liberally from similar works of
 5 * others.  All original copyrights apply as per the original source
 6 * declaration.
 7 *
 8 * Modifications for the OpenRISC architecture:
 9 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
11 *
12 *      This program is free software; you can redistribute it and/or
13 *      modify it under the terms of the GNU General Public License
14 *      as published by the Free Software Foundation; either version
15 *      2 of the License, or (at your option) any later version.
16 */
17
18#include <linux/export.h>
19#include <linux/elfcore.h>
20#include <linux/sched.h>
21#include <linux/in6.h>
22#include <linux/interrupt.h>
23#include <linux/vmalloc.h>
24#include <linux/semaphore.h>
 
25
26#include <asm/processor.h>
27#include <linux/uaccess.h>
28#include <asm/checksum.h>
29#include <asm/io.h>
30#include <asm/hardirq.h>
31#include <asm/delay.h>
32#include <asm/pgalloc.h>
33#include <asm/pgtable.h>
34
35#define DECLARE_EXPORT(name) extern void name(void); EXPORT_SYMBOL(name)
36
37/* compiler generated symbols */
38DECLARE_EXPORT(__udivsi3);
39DECLARE_EXPORT(__divsi3);
40DECLARE_EXPORT(__umodsi3);
41DECLARE_EXPORT(__modsi3);
42DECLARE_EXPORT(__muldi3);
43DECLARE_EXPORT(__ashrdi3);
44DECLARE_EXPORT(__ashldi3);
45DECLARE_EXPORT(__lshrdi3);
46DECLARE_EXPORT(__ucmpdi2);
47
48EXPORT_SYMBOL(empty_zero_page);
49EXPORT_SYMBOL(__copy_tofrom_user);
50EXPORT_SYMBOL(__clear_user);
51EXPORT_SYMBOL(memset);
v5.9
 1// SPDX-License-Identifier: GPL-2.0-or-later
 2/*
 3 * OpenRISC or32_ksyms.c
 4 *
 5 * Linux architectural port borrowing liberally from similar works of
 6 * others.  All original copyrights apply as per the original source
 7 * declaration.
 8 *
 9 * Modifications for the OpenRISC architecture:
10 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
11 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
 
 
 
 
 
12 */
13
14#include <linux/export.h>
15#include <linux/elfcore.h>
16#include <linux/sched.h>
17#include <linux/in6.h>
18#include <linux/interrupt.h>
19#include <linux/vmalloc.h>
20#include <linux/semaphore.h>
21#include <linux/pgtable.h>
22
23#include <asm/processor.h>
24#include <linux/uaccess.h>
25#include <asm/checksum.h>
26#include <asm/io.h>
27#include <asm/hardirq.h>
28#include <asm/delay.h>
 
 
29
30#define DECLARE_EXPORT(name) extern void name(void); EXPORT_SYMBOL(name)
31
32/* compiler generated symbols */
33DECLARE_EXPORT(__udivsi3);
34DECLARE_EXPORT(__divsi3);
35DECLARE_EXPORT(__umodsi3);
36DECLARE_EXPORT(__modsi3);
37DECLARE_EXPORT(__muldi3);
38DECLARE_EXPORT(__ashrdi3);
39DECLARE_EXPORT(__ashldi3);
40DECLARE_EXPORT(__lshrdi3);
41DECLARE_EXPORT(__ucmpdi2);
42
43EXPORT_SYMBOL(empty_zero_page);
44EXPORT_SYMBOL(__copy_tofrom_user);
45EXPORT_SYMBOL(__clear_user);
46EXPORT_SYMBOL(memset);