/* * (C) 2001 Clemson University and The University of Chicago * * See COPYING in top-level directory. */ #ifndef _ORANGEFS_DEV_PROTO_H #define _ORANGEFS_DEV_PROTO_H /* * types and constants shared between user space and kernel space for * device interaction using a common protocol */ /* * valid orangefs kernel operation types */ #define ORANGEFS_VFS_OP_INVALID 0xFF000000 #define ORANGEFS_VFS_OP_FILE_IO 0xFF000001 #define ORANGEFS_VFS_OP_LOOKUP 0xFF000002 #define ORANGEFS_VFS_OP_CREATE 0xFF000003 #define ORANGEFS_VFS_OP_GETATTR 0xFF000004 #define ORANGEFS_VFS_OP_REMOVE 0xFF000005 #define ORANGEFS_VFS_OP_MKDIR 0xFF000006 #define ORANGEFS_VFS_OP_READDIR 0xFF000007 #define ORANGEFS_VFS_OP_SETATTR 0xFF000008 #define ORANGEFS_VFS_OP_SYMLINK 0xFF000009 #define ORANGEFS_VFS_OP_RENAME 0xFF00000A #define ORANGEFS_VFS_OP_STATFS 0xFF00000B #define ORANGEFS_VFS_OP_TRUNCATE 0xFF00000C #define ORANGEFS_VFS_OP_RA_FLUSH 0xFF00000D #define ORANGEFS_VFS_OP_FS_MOUNT 0xFF00000E #define ORANGEFS_VFS_OP_FS_UMOUNT 0xFF00000F #define ORANGEFS_VFS_OP_GETXATTR 0xFF000010 #define ORANGEFS_VFS_OP_SETXATTR 0xFF000011 #define ORANGEFS_VFS_OP_LISTXATTR 0xFF000012 #define ORANGEFS_VFS_OP_REMOVEXATTR 0xFF000013 #define ORANGEFS_VFS_OP_PARAM 0xFF000014 #define ORANGEFS_VFS_OP_PERF_COUNT 0xFF000015 #define ORANGEFS_VFS_OP_CANCEL 0xFF00EE00 #define ORANGEFS_VFS_OP_FSYNC 0xFF00EE01 #define ORANGEFS_VFS_OP_FSKEY 0xFF00EE02 #define ORANGEFS_VFS_OP_READDIRPLUS 0xFF00EE03 #define ORANGEFS_VFS_OP_FEATURES 0xFF00EE05 /* 2.9.6 */ /* features is a 64-bit unsigned bitmask */ #define ORANGEFS_FEATURE_READAHEAD 1 /* * Misc constants. Please retain them as multiples of 8! * Otherwise 32-64 bit interactions will be messed up :) */ #define ORANGEFS_MAX_DEBUG_STRING_LEN 0x00000400 #define ORANGEFS_MAX_DEBUG_ARRAY_LEN 0x00000800 /* * The maximum number of directory entries in a single request is 96. * XXX: Why can this not be higher. The client-side code can handle up to 512. * XXX: What happens if we expect more than the client can return? */ #define ORANGEFS_MAX_DIRENT_COUNT_READDIR 96 #include "upcall.h" #include "downcall.h" #endif aa2c37d790ec9ed'/>
path: root/sound/soc/codecs/max98090.h
diff options
context:
space:
mode:
authorMark Rutland <mark.rutland@arm.com>2017-01-25 19:30:09 +0000
committerMark Brown <broonie@kernel.org>2017-01-25 21:05:37 +0000
commit1372cef1c697d8aac0cc923f8aa2c37d790ec9ed (patch)
treeed5f350cd559bc15ae370f0c9fd280204e98597d /sound/soc/codecs/max98090.h
parentd00b74613fb18dfd0a5aa99270ee2e72d5c808d7 (diff)
regulator: fixed: Revert support for ACPI interface
This reverts commit 13bed58ce874 (regulator: fixed: add support for ACPI interface). While there does appear to be a practical need to manage regulators on ACPI systems, using ad-hoc properties to describe regulators to the kernel presents a number of problems (especially should ACPI gain first class support for such things), and there are ongoing discussions as to how to manage this. Until there is a rough consensus, revert commit 13bed58ce8748d43, which hasn't been in a released kernel yet as discussed in [1] and the surrounding thread. [1] http://lkml.kernel.org/r/20170125184949.x2wkoo7kbaaajkjk@sirena.org.uk Signed-off-by: Mark Rutland <mark.rutland@arm.com> Cc: Liam Girdwood <lgirdwood@gmail.com> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Cc: Lu Baolu <baolu.lu@linux.intel.com> Cc: Mark Brown <broonie@kernel.org> Cc: Rafael J. Wysocki <rafael@kernel.org> Cc: linux-kernel@vger.kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/max98090.h')