Changeset 371bd7d in mainline for kernel/genarch/src/drivers


Ignore:
Timestamp:
2010-03-27T09:22:17Z (16 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, 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/drivers
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 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);
Note: See TracChangeset for help on using the changeset viewer.