Remove all references to ARM registers in system call arguments.

This commit is contained in:
Bahadir Balban
2009-06-10 17:30:02 +03:00
parent 6de090a365
commit 0dd8918ae5
10 changed files with 134 additions and 77 deletions

View File

@@ -7,6 +7,12 @@
#ifndef __GENERIC_TIMER_H__
#define __GENERIC_TIMER_H__
/* Used by posix systems */
struct timeval {
int tv_sec;
int tv_usec;
};
extern volatile u32 jiffies;
int do_timer_irq(void);