Changeset 19f857a in mainline for kernel/genarch/src
- Timestamp:
- 2010-03-21T09:39:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8023571
- Parents:
- e2b73d4f
- Location:
- kernel/genarch/src
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/drivers/dsrln/dsrlnout.c
re2b73d4f r19f857a 41 41 #include <console/console.h> 42 42 #include <sysinfo/sysinfo.h> 43 #include <str ing.h>43 #include <str.h> 44 44 45 45 typedef struct { -
kernel/genarch/src/drivers/ega/ega.c
re2b73d4f r19f857a 45 45 #include <arch/asm.h> 46 46 #include <memstr.h> 47 #include <str ing.h>47 #include <str.h> 48 48 #include <console/chardev.h> 49 49 #include <console/console.h> -
kernel/genarch/src/fb/fb.c
re2b73d4f r19f857a 49 49 #include <bitops.h> 50 50 #include <print.h> 51 #include <str ing.h>51 #include <str.h> 52 52 #include <ddi/ddi.h> 53 53 #include <arch/types.h> -
kernel/genarch/src/kbrd/scanc_mac.c
re2b73d4f r19f857a 37 37 #include <genarch/kbrd/scanc.h> 38 38 #include <typedefs.h> 39 #include <str ing.h>39 #include <str.h> 40 40 41 41 /** Primary meaning of scancodes. */ -
kernel/genarch/src/kbrd/scanc_pc.c
re2b73d4f r19f857a 37 37 #include <genarch/kbrd/scanc.h> 38 38 #include <typedefs.h> 39 #include <str ing.h>39 #include <str.h> 40 40 41 41 /** Primary meaning of scancodes. */ -
kernel/genarch/src/kbrd/scanc_pl050.c
re2b73d4f r19f857a 36 36 #include <genarch/kbrd/scanc.h> 37 37 #include <typedefs.h> 38 #include <str ing.h>38 #include <str.h> 39 39 40 40 -
kernel/genarch/src/kbrd/scanc_sun.c
re2b73d4f r19f857a 37 37 #include <genarch/kbrd/scanc.h> 38 38 #include <typedefs.h> 39 #include <str ing.h>39 #include <str.h> 40 40 41 41 /** Primary meaning of scancodes. */ -
kernel/genarch/src/multiboot/multiboot.c
re2b73d4f r19f857a 37 37 #include <typedefs.h> 38 38 #include <config.h> 39 #include <str ing.h>39 #include <str.h> 40 40 #include <macros.h> 41 41 -
kernel/genarch/src/ofw/ebus.c
re2b73d4f r19f857a 40 40 #include <genarch/ofw/pci.h> 41 41 #include <arch/memstr.h> 42 #include <str ing.h>42 #include <str.h> 43 43 #include <panic.h> 44 44 #include <debug.h> -
kernel/genarch/src/ofw/fhc.c
re2b73d4f r19f857a 40 40 #include <arch/drivers/fhc.h> 41 41 #include <arch/memstr.h> 42 #include <str ing.h>42 #include <str.h> 43 43 #include <panic.h> 44 44 #include <macros.h> -
kernel/genarch/src/ofw/ofw_tree.c
re2b73d4f r19f857a 39 39 #include <arch/memstr.h> 40 40 #include <mm/slab.h> 41 #include <str ing.h>41 #include <str.h> 42 42 #include <panic.h> 43 43 #include <print.h> -
kernel/genarch/src/ofw/pci.c
re2b73d4f r19f857a 41 41 #include <arch/trap/interrupt.h> 42 42 #include <arch/memstr.h> 43 #include <str ing.h>43 #include <str.h> 44 44 #include <panic.h> 45 45 #include <macros.h> 46 46 47 47 #define PCI_SPACE_MASK 0x03000000 48 #define PCI_ABS_MASK 0x80000000 48 #define PCI_ABS_MASK 0x80000000 49 49 #define PCI_REG_MASK 0x000000ff 50 50 -
kernel/genarch/src/srln/srln.c
re2b73d4f r19f857a 40 40 #include <proc/thread.h> 41 41 #include <arch.h> 42 #include <str ing.h>42 #include <str.h> 43 43 44 44 static indev_operations_t srln_raw_ops = {
Note:
See TracChangeset
for help on using the changeset viewer.