Changeset 76ca3f7 in mainline for kernel/genarch/src
- Timestamp:
- 2010-03-23T20:49:54Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/genarch/src
- Files:
-
- 18 edited
-
acpi/madt.c (modified) (1 diff)
-
drivers/dsrln/dsrlnout.c (modified) (1 diff)
-
drivers/ega/ega.c (modified) (1 diff)
-
fb/fb.c (modified) (1 diff)
-
kbrd/scanc_mac.c (modified) (1 diff)
-
kbrd/scanc_pc.c (modified) (1 diff)
-
kbrd/scanc_pl050.c (modified) (1 diff)
-
kbrd/scanc_sun.c (modified) (1 diff)
-
mm/as_ht.c (modified) (1 diff)
-
mm/as_pt.c (modified) (1 diff)
-
mm/page_ht.c (modified) (1 diff)
-
mm/page_pt.c (modified) (1 diff)
-
multiboot/multiboot.c (modified) (1 diff)
-
ofw/ebus.c (modified) (1 diff)
-
ofw/fhc.c (modified) (1 diff)
-
ofw/ofw_tree.c (modified) (1 diff)
-
ofw/pci.c (modified) (1 diff)
-
srln/srln.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/acpi/madt.c
rb48ebd19 r76ca3f7 35 35 */ 36 36 37 #include < arch/types.h>37 #include <typedefs.h> 38 38 #include <genarch/acpi/acpi.h> 39 39 #include <genarch/acpi/madt.h> -
kernel/genarch/src/drivers/dsrln/dsrlnout.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 42 42 #include <arch/mm/page.h> 43 43 #include <synch/spinlock.h> 44 #include < arch/types.h>44 #include <typedefs.h> 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
rb48ebd19 r76ca3f7 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 #include < arch/types.h>53 #include <typedefs.h> 54 54 #include <byteorder.h> 55 55 -
kernel/genarch/src/kbrd/scanc_mac.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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/mm/as_ht.c
rb48ebd19 r76ca3f7 41 41 #include <mm/as.h> 42 42 #include <mm/frame.h> 43 #include < arch/types.h>43 #include <typedefs.h> 44 44 #include <memstr.h> 45 45 #include <adt/hash_table.h> -
kernel/genarch/src/mm/as_pt.c
rb48ebd19 r76ca3f7 43 43 #include <arch/mm/page.h> 44 44 #include <arch/mm/as.h> 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <memstr.h> 47 47 #include <arch.h> -
kernel/genarch/src/mm/page_ht.c
rb48ebd19 r76ca3f7 43 43 #include <mm/as.h> 44 44 #include <arch/mm/asid.h> 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <arch/asm.h> 47 47 #include <synch/spinlock.h> -
kernel/genarch/src/mm/page_pt.c
rb48ebd19 r76ca3f7 42 42 #include <arch/mm/page.h> 43 43 #include <arch/mm/as.h> 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 #include <arch/asm.h> 46 46 #include <memstr.h> -
kernel/genarch/src/multiboot/multiboot.c
rb48ebd19 r76ca3f7 34 34 35 35 #include <genarch/multiboot/multiboot.h> 36 #include <arch/types.h>37 36 #include <typedefs.h> 38 37 #include <config.h> 39 #include <str ing.h>38 #include <str.h> 40 39 #include <macros.h> 41 40 -
kernel/genarch/src/ofw/ebus.c
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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
rb48ebd19 r76ca3f7 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.
