Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/m68k/sun3/sun3.h
26424 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
#include <linux/linkage.h>
4
5
struct rtc_time;
6
7
/* config.c */
8
asmlinkage void sun3_init(void);
9
10
/* idprom.c */
11
void sun3_get_model(char *model);
12
13
/* intersil.c */
14
int sun3_hwclk(int set, struct rtc_time *t);
15
16
/* leds.c */
17
void sun3_leds(unsigned char byte);
18
19
/* mmu_emu.c */
20
void mmu_emu_init(unsigned long bootmem_end);
21
int mmu_emu_handle_fault(unsigned long vaddr, int read_flag, int kernel_fault);
22
void print_pte_vaddr(unsigned long vaddr);
23
24