Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  *  Copyright (C) 1996-2000 Vojtech Pavlik
0004  *
0005  *  Sponsored by SuSE
0006  */
0007 /*
0008  */
0009 #ifndef _LINUX_JOYSTICK_H
0010 #define _LINUX_JOYSTICK_H
0011 
0012 #include <uapi/linux/joystick.h>
0013 
0014 #if BITS_PER_LONG == 64
0015 #define JS_DATA_SAVE_TYPE JS_DATA_SAVE_TYPE_64
0016 #elif BITS_PER_LONG == 32
0017 #define JS_DATA_SAVE_TYPE JS_DATA_SAVE_TYPE_32
0018 #else
0019 #error Unexpected BITS_PER_LONG
0020 #endif
0021 #endif /* _LINUX_JOYSTICK_H */