Changeset 371bd7d in mainline for kernel/genarch/src/drivers
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- 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. - Location:
- kernel/genarch/src/drivers
- Files:
-
- 4 edited
-
dsrln/dsrlnout.c (modified) (1 diff)
-
ega/ega.c (modified) (1 diff)
-
i8042/i8042.c (modified) (1 diff)
-
via-cuda/cuda.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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);
Note:
See TracChangeset
for help on using the changeset viewer.
