Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4626 → Rev 4637

/trunk/kernel/genarch/include/drivers/via-cuda/cuda.h
97,7 → 97,9
enum cuda_xfer_state {
cx_listen,
cx_receive,
cx_rcv_end
cx_rcv_end,
cx_send_start,
cx_send
};
 
typedef struct {
105,7 → 107,9
cuda_t *cuda;
indev_t *kbrdin;
uint8_t rcv_buf[CUDA_RCV_BUF_SIZE];
uint8_t snd_buf[CUDA_RCV_BUF_SIZE];
size_t bidx;
size_t snd_bytes;
enum cuda_xfer_state xstate;
SPINLOCK_DECLARE(dev_lock);
} cuda_instance_t;