Skip to content
Snippets Groups Projects
Commit 2e680f92 authored by York Sun's avatar York Sun Committed by Tom Rini
Browse files

Revert "include/linux: move typdef for uintptr_t"


This reverts commit e8f954a7, which
causes compiling errors on 32-bit hosts.

Acked-by: default avatarAneesh Bansal <aneesh.bansal@freescale.com>
Signed-off-by: default avatarYork Sun <yorksun@freescale.com>
parent e6e3faa5
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,9 @@ typedef unsigned int uint;
#ifdef CONFIG_USE_STDINT
/* Provided by gcc. */
#include <stdint.h>
#else
/* Type for `void *' pointers. */
typedef unsigned long int uintptr_t;
#endif
#include <linux/string.h>
......
......@@ -124,7 +124,6 @@ typedef __UINT64_TYPE__ u_int64_t;
typedef __INT64_TYPE__ int64_t;
#endif
typedef unsigned long uintptr_t;
/*
* Below are truly Linux-specific types that should never collide with
* any application/library that wants linux/types.h.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment