Changeset 371bd7d in mainline for kernel/genarch/src
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (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:
-
- 20 edited
-
acpi/madt.c (modified) (2 diffs)
-
drivers/dsrln/dsrlnout.c (modified) (1 diff)
-
drivers/ega/ega.c (modified) (1 diff)
-
drivers/i8042/i8042.c (modified) (1 diff)
-
drivers/via-cuda/cuda.c (modified) (1 diff)
-
fb/fb.c (modified) (2 diffs)
-
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
rcd82bb1 r371bd7d 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> … … 72 72 unsigned int madt_entries_index_cnt = 0; 73 73 74 c har *entry[] = {74 const char *entry[] = { 75 75 "L_APIC", 76 76 "IO_APIC", -
kernel/genarch/src/drivers/dsrln/dsrlnout.c
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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/drivers/i8042/i8042.c
rcd82bb1 r371bd7d 67 67 i8042_instance_t *instance = irq->instance; 68 68 i8042_t *dev = instance->i8042; 69 uint8_t status;70 69 71 if ( ((status = pio_read_8(&dev->status)) & i8042_BUFFER_FULL_MASK)) {70 if (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK) { 72 71 uint8_t data = pio_read_8(&dev->data); 73 72 indev_push_character(instance->kbrdin, data); -
kernel/genarch/src/drivers/via-cuda/cuda.c
rcd82bb1 r371bd7d 41 41 #include <ddi/device.h> 42 42 #include <synch/spinlock.h> 43 #include <memstr.h> 43 44 44 45 static irq_ownership_t cuda_claim(irq_t *irq); -
kernel/genarch/src/fb/fb.c
rcd82bb1 r371bd7d 41 41 #include <console/console.h> 42 42 #include <sysinfo/sysinfo.h> 43 #include <mm/page.h> 43 44 #include <mm/slab.h> 44 45 #include <align.h> … … 48 49 #include <bitops.h> 49 50 #include <print.h> 50 #include <str ing.h>51 #include <str.h> 51 52 #include <ddi/ddi.h> 52 #include < arch/types.h>53 #include <typedefs.h> 53 54 #include <byteorder.h> 54 55 -
kernel/genarch/src/kbrd/scanc_mac.c
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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
rcd82bb1 r371bd7d 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.
