blob: 686a101b467a4aaebd202c9529f57ebd51859e77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
****************************************************************
** **
** (C)Copyright 2006-2009, American Megatrends Inc. **
** **
** All Rights Reserved. **
** **
** 5555 Oakbrook Pkwy Suite 200, Norcross, **
** **
** Georgia - 30093, USA. Phone-(770)-246-8600. **
** **
****************************************************************
*/
#ifndef KCS_TIMEOUT_H
#define KCS_TIMEOUT_H
typedef struct
{
wait_queue_head_t queue;
struct timer_list tim;
volatile u8 Timeout;
} __attribute__((packed)) Kcs_OsSleepStruct;
#endif
|