Skip to content

Commit

Permalink
parisc: __kernel_time_t is always long
Browse files Browse the repository at this point in the history
__kernel_time_t is always long on PA-RISC, irrespective of CONFIG_64BIT,
hence move it out of the #ifdef CONFIG_64BIT / #else / #endif block.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
  • Loading branch information
Geert Uytterhoeven authored and Kyle McMartin committed Nov 26, 2008
1 parent ed31348 commit 9860d1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/parisc/include/asm/posix_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,12 @@ typedef int __kernel_daddr_t;
typedef unsigned long __kernel_size_t;
typedef long __kernel_ssize_t;
typedef long __kernel_ptrdiff_t;
typedef long __kernel_time_t;
#else
typedef unsigned int __kernel_size_t;
typedef int __kernel_ssize_t;
typedef int __kernel_ptrdiff_t;
typedef long __kernel_time_t;
#endif
typedef long __kernel_time_t;
typedef char * __kernel_caddr_t;

typedef unsigned short __kernel_uid16_t;
Expand Down

0 comments on commit 9860d1b

Please sign in to comment.