Changeset 371bd7d in mainline for kernel/genarch/src


Ignore:
Timestamp:
2010-03-27T09:22:17Z (16 years ago)
Author:
Jiri Svoboda <jiri@…>
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.
Message:

Merge mainline changes.

Location:
kernel/genarch/src
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/acpi/madt.c

    rcd82bb1 r371bd7d  
    3535 */
    3636
    37 #include <arch/types.h>
     37#include <typedefs.h>
    3838#include <genarch/acpi/acpi.h>
    3939#include <genarch/acpi/madt.h>
     
    7272unsigned int madt_entries_index_cnt = 0;
    7373
    74 char *entry[] = {
     74const char *entry[] = {
    7575        "L_APIC",
    7676        "IO_APIC",
  • kernel/genarch/src/drivers/dsrln/dsrlnout.c

    rcd82bb1 r371bd7d  
    4141#include <console/console.h>
    4242#include <sysinfo/sysinfo.h>
    43 #include <string.h>
     43#include <str.h>
    4444
    4545typedef struct {
  • kernel/genarch/src/drivers/ega/ega.c

    rcd82bb1 r371bd7d  
    4242#include <arch/mm/page.h>
    4343#include <synch/spinlock.h>
    44 #include <arch/types.h>
     44#include <typedefs.h>
    4545#include <arch/asm.h>
    4646#include <memstr.h>
    47 #include <string.h>
     47#include <str.h>
    4848#include <console/chardev.h>
    4949#include <console/console.h>
  • kernel/genarch/src/drivers/i8042/i8042.c

    rcd82bb1 r371bd7d  
    6767        i8042_instance_t *instance = irq->instance;
    6868        i8042_t *dev = instance->i8042;
    69         uint8_t status;
    7069       
    71         if (((status = pio_read_8(&dev->status)) & i8042_BUFFER_FULL_MASK)) {
     70        if (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK) {
    7271                uint8_t data = pio_read_8(&dev->data);
    7372                indev_push_character(instance->kbrdin, data);
  • kernel/genarch/src/drivers/via-cuda/cuda.c

    rcd82bb1 r371bd7d  
    4141#include <ddi/device.h>
    4242#include <synch/spinlock.h>
     43#include <memstr.h>
    4344
    4445static irq_ownership_t cuda_claim(irq_t *irq);
  • kernel/genarch/src/fb/fb.c

    rcd82bb1 r371bd7d  
    4141#include <console/console.h>
    4242#include <sysinfo/sysinfo.h>
     43#include <mm/page.h>
    4344#include <mm/slab.h>
    4445#include <align.h>
     
    4849#include <bitops.h>
    4950#include <print.h>
    50 #include <string.h>
     51#include <str.h>
    5152#include <ddi/ddi.h>
    52 #include <arch/types.h>
     53#include <typedefs.h>
    5354#include <byteorder.h>
    5455
  • kernel/genarch/src/kbrd/scanc_mac.c

    rcd82bb1 r371bd7d  
    3737#include <genarch/kbrd/scanc.h>
    3838#include <typedefs.h>
    39 #include <string.h>
     39#include <str.h>
    4040
    4141/** Primary meaning of scancodes. */
  • kernel/genarch/src/kbrd/scanc_pc.c

    rcd82bb1 r371bd7d  
    3737#include <genarch/kbrd/scanc.h>
    3838#include <typedefs.h>
    39 #include <string.h>
     39#include <str.h>
    4040
    4141/** Primary meaning of scancodes. */
  • kernel/genarch/src/kbrd/scanc_pl050.c

    rcd82bb1 r371bd7d  
    3636#include <genarch/kbrd/scanc.h>
    3737#include <typedefs.h>
    38 #include <string.h>
     38#include <str.h>
    3939
    4040
  • kernel/genarch/src/kbrd/scanc_sun.c

    rcd82bb1 r371bd7d  
    3737#include <genarch/kbrd/scanc.h>
    3838#include <typedefs.h>
    39 #include <string.h>
     39#include <str.h>
    4040
    4141/** Primary meaning of scancodes. */
  • kernel/genarch/src/mm/as_ht.c

    rcd82bb1 r371bd7d  
    4141#include <mm/as.h>
    4242#include <mm/frame.h>
    43 #include <arch/types.h>
     43#include <typedefs.h>
    4444#include <memstr.h>
    4545#include <adt/hash_table.h>
  • kernel/genarch/src/mm/as_pt.c

    rcd82bb1 r371bd7d  
    4343#include <arch/mm/page.h>
    4444#include <arch/mm/as.h>
    45 #include <arch/types.h>
     45#include <typedefs.h>
    4646#include <memstr.h>
    4747#include <arch.h>
  • kernel/genarch/src/mm/page_ht.c

    rcd82bb1 r371bd7d  
    4343#include <mm/as.h>
    4444#include <arch/mm/asid.h>
    45 #include <arch/types.h>
     45#include <typedefs.h>
    4646#include <arch/asm.h>
    4747#include <synch/spinlock.h>
  • kernel/genarch/src/mm/page_pt.c

    rcd82bb1 r371bd7d  
    4242#include <arch/mm/page.h>
    4343#include <arch/mm/as.h>
    44 #include <arch/types.h>
     44#include <typedefs.h>
    4545#include <arch/asm.h>
    4646#include <memstr.h>
  • kernel/genarch/src/multiboot/multiboot.c

    rcd82bb1 r371bd7d  
    3434
    3535#include <genarch/multiboot/multiboot.h>
    36 #include <arch/types.h>
    3736#include <typedefs.h>
    3837#include <config.h>
    39 #include <string.h>
     38#include <str.h>
    4039#include <macros.h>
    4140
  • kernel/genarch/src/ofw/ebus.c

    rcd82bb1 r371bd7d  
    4040#include <genarch/ofw/pci.h>
    4141#include <arch/memstr.h>
    42 #include <string.h>
     42#include <str.h>
    4343#include <panic.h>
    4444#include <debug.h>
  • kernel/genarch/src/ofw/fhc.c

    rcd82bb1 r371bd7d  
    4040#include <arch/drivers/fhc.h>
    4141#include <arch/memstr.h>
    42 #include <string.h>
     42#include <str.h>
    4343#include <panic.h>
    4444#include <macros.h>
  • kernel/genarch/src/ofw/ofw_tree.c

    rcd82bb1 r371bd7d  
    3939#include <arch/memstr.h>
    4040#include <mm/slab.h>
    41 #include <string.h>
     41#include <str.h>
    4242#include <panic.h>
    4343#include <print.h>
  • kernel/genarch/src/ofw/pci.c

    rcd82bb1 r371bd7d  
    4141#include <arch/trap/interrupt.h>
    4242#include <arch/memstr.h>
    43 #include <string.h>
     43#include <str.h>
    4444#include <panic.h>
    4545#include <macros.h>
    4646
    4747#define PCI_SPACE_MASK          0x03000000
    48 #define PCI_ABS_MASK            0x80000000     
     48#define PCI_ABS_MASK            0x80000000
    4949#define PCI_REG_MASK            0x000000ff
    5050
  • kernel/genarch/src/srln/srln.c

    rcd82bb1 r371bd7d  
    4040#include <proc/thread.h>
    4141#include <arch.h>
    42 #include <string.h>
     42#include <str.h>
    4343
    4444static indev_operations_t srln_raw_ops = {
Note: See TracChangeset for help on using the changeset viewer.