Changeset 732fd3c in mainline for arch/ppc32/src/drivers/cuda.c


Ignore:
Timestamp:
2006-06-06T23:03:42Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9ceaef4
Parents:
a175a67
Message:

ppc32 uspace keyboard support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/src/drivers/cuda.c

    ra175a67 r732fd3c  
    2929#include <arch/drivers/cuda.h>
    3030#include <arch/asm.h>
    31 #include <console/chardev.h>
    3231#include <console/console.h>
    3332#include <arch/drivers/pic.h>
     33#include <sysinfo/sysinfo.h>
    3434#include <interrupt.h>
    3535#include <stdarg.h>
     
    130130
    131131
    132 static chardev_t kbrd;
     132chardev_t kbrd;
    133133static chardev_operations_t ops = {
    134134        .suspend = cuda_suspend,
     
    163163        chardev_initialize("cuda_kbd", &kbrd, &ops);
    164164        stdin = &kbrd;
     165       
     166        sysinfo_set_item_val("cuda", NULL, true);
     167        sysinfo_set_item_val("cuda.irq", NULL, CUDA_IRQ);
    165168}
    166169
Note: See TracChangeset for help on using the changeset viewer.