From b5ee516575b4d2f1fd7de014230fee7cf8b6b538 Mon Sep 17 00:00:00 2001 From: rsc Date: Mon, 17 Jul 2006 01:52:13 +0000 Subject: add uint and standardize on typedefs instead of unsigned --- ide.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ide.c') diff --git a/ide.c b/ide.c index e1ed25a..3228f7f 100644 --- a/ide.c +++ b/ide.c @@ -19,7 +19,7 @@ struct ide_request { uint32_t secno; void *dst; - unsigned nsecs; + uint nsecs; }; struct ide_request request[NREQUEST]; int head, tail; @@ -104,7 +104,7 @@ ide_start_request (void) } void * -ide_start_read(uint32_t secno, void *dst, unsigned nsecs) +ide_start_read(uint32_t secno, void *dst, uint nsecs) { struct ide_request *r; @@ -149,7 +149,7 @@ ide_finish_read(void *c) } int -ide_write(uint32_t secno, const void *src, unsigned nsecs) +ide_write(uint32_t secno, const void *src, uint nsecs) { int r; -- cgit v1.2.3