Skip to content

Commit

Permalink
staging: crystalhd: add missing fixes for userspace lib build
Browse files Browse the repository at this point in the history
I somehow managed to not actually include these two fixes in the submission
that was committed to the staging tree. libcrystalhd should eventually be
built against the kernel-provided header, and needs the stdint.h include. The
VOID bit is to keep things in sync with the Mac OS X driver and library that
Scott Davilla is also working on.

Signed-off-by: Scott Davilla <davilla@4pi.com>
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jarod Wilson authored and Greg Kroah-Hartman committed Mar 4, 2010
1 parent 8a8e297 commit 88d4300
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/staging/crystalhd/bc_dts_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
#ifndef _BC_DTS_TYPES_H_
#define _BC_DTS_TYPES_H_

#ifdef __LINUX_USER__ // Don't include these for KERNEL..
#include <stdint.h>
#endif

#if defined(_WIN64) || defined(_WIN32)
typedef uint32_t U32;
typedef int32_t S32;
Expand Down Expand Up @@ -62,7 +66,9 @@ typedef int BOOL;
typedef uint32_t ULONG;
typedef int32_t LONG;
typedef void *HANDLE;
#ifndef VOID
typedef void VOID;
#endif
typedef void *LPVOID;
typedef uint32_t DWORD;
typedef uint32_t UINT32;
Expand Down

0 comments on commit 88d4300

Please sign in to comment.