mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 20:37:27 +00:00
Staging: hv: osd.h: codingstyle cleanups
This fixes up the coding style issues in osd.h, with the exception of the typedefs, they will be removed later. Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4983b39a06
commit
0ccafb3658
@ -27,32 +27,28 @@
|
|||||||
|
|
||||||
|
|
||||||
/* Defines */
|
/* Defines */
|
||||||
|
#define ALIGN_UP(value, align) (((value) & (align-1)) ? \
|
||||||
|
(((value) + (align-1)) & ~(align-1)) : \
|
||||||
|
(value))
|
||||||
|
#define ALIGN_DOWN(value, align) ((value) & ~(align-1))
|
||||||
|
#define NUM_PAGES_SPANNED(addr, len) ((ALIGN_UP(addr+len, PAGE_SIZE) - \
|
||||||
|
ALIGN_DOWN(addr, PAGE_SIZE)) >> \
|
||||||
|
PAGE_SHIFT)
|
||||||
|
|
||||||
|
#define LOWORD(dw) ((unsigned short)(dw))
|
||||||
|
#define HIWORD(dw) ((unsigned short)(((unsigned int) (dw) >> 16) & 0xFFFF))
|
||||||
#define ALIGN_UP(value, align) ( ((value) & (align-1))? ( ((value) + (align-1)) & ~(align-1) ): (value) )
|
|
||||||
#define ALIGN_DOWN(value, align) ( (value) & ~(align-1) )
|
|
||||||
#define NUM_PAGES_SPANNED(addr, len) ( (ALIGN_UP(addr+len, PAGE_SIZE) - ALIGN_DOWN(addr, PAGE_SIZE)) >> PAGE_SHIFT )
|
|
||||||
|
|
||||||
#define LOWORD(dw) ((unsigned short) (dw))
|
|
||||||
#define HIWORD(dw) ((unsigned short) (((unsigned int) (dw) >> 16) & 0xFFFF))
|
|
||||||
|
|
||||||
typedef struct _DLIST_ENTRY {
|
typedef struct _DLIST_ENTRY {
|
||||||
struct _DLIST_ENTRY *Flink;
|
struct _DLIST_ENTRY *Flink;
|
||||||
struct _DLIST_ENTRY *Blink;
|
struct _DLIST_ENTRY *Blink;
|
||||||
} DLIST_ENTRY;
|
} DLIST_ENTRY;
|
||||||
|
|
||||||
|
|
||||||
/* Other types */
|
|
||||||
|
|
||||||
/* typedef unsigned char GUID[16]; */
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned char Data[16];
|
unsigned char Data[16];
|
||||||
} GUID;
|
} GUID;
|
||||||
|
|
||||||
struct osd_waitevent {
|
struct osd_waitevent {
|
||||||
int condition;
|
int condition;
|
||||||
wait_queue_head_t event;
|
wait_queue_head_t event;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -61,15 +57,15 @@ struct osd_waitevent {
|
|||||||
extern void *osd_VirtualAllocExec(unsigned int size);
|
extern void *osd_VirtualAllocExec(unsigned int size);
|
||||||
|
|
||||||
extern void *osd_PageAlloc(unsigned int count);
|
extern void *osd_PageAlloc(unsigned int count);
|
||||||
extern void osd_PageFree(void* page, unsigned int count);
|
extern void osd_PageFree(void *page, unsigned int count);
|
||||||
|
|
||||||
extern struct osd_waitevent *osd_WaitEventCreate(void);
|
extern struct osd_waitevent *osd_WaitEventCreate(void);
|
||||||
extern void osd_WaitEventSet(struct osd_waitevent *waitEvent);
|
extern void osd_WaitEventSet(struct osd_waitevent *waitEvent);
|
||||||
extern int osd_WaitEventWait(struct osd_waitevent *waitEvent);
|
extern int osd_WaitEventWait(struct osd_waitevent *waitEvent);
|
||||||
|
|
||||||
/* If >0, waitEvent got signaled. If ==0, timeout. If < 0, error */
|
/* If >0, waitEvent got signaled. If ==0, timeout. If < 0, error */
|
||||||
extern int osd_WaitEventWaitEx(struct osd_waitevent *waitEvent, u32 TimeoutInMs);
|
extern int osd_WaitEventWaitEx(struct osd_waitevent *waitEvent,
|
||||||
|
u32 TimeoutInMs);
|
||||||
|
|
||||||
int osd_schedule_callback(struct workqueue_struct *wq,
|
int osd_schedule_callback(struct workqueue_struct *wq,
|
||||||
void (*func)(void *),
|
void (*func)(void *),
|
||||||
|
Loading…
Reference in New Issue
Block a user