staging: unisys: include: Remove unnecessary macro to generate signature
Removes unnecessary SIGNATURE_16 macro used to generate a simple 32-bit signature. Signed-off-by: David Binder <david.binder@unisys.com> Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <timothy.sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e8ffed837f
commit
e27b10aa89
|
@ -20,9 +20,7 @@
|
|||
#include <linux/types.h>
|
||||
#include <linux/uuid.h>
|
||||
|
||||
#define SIGNATURE_16(A, B) ((A) | ((B) << 8))
|
||||
#define VISOR_CHANNEL_SIGNATURE \
|
||||
(SIGNATURE_16('E', 'C') | (SIGNATURE_16('N', 'L') << 16))
|
||||
#define VISOR_CHANNEL_SIGNATURE ('L' << 24 | 'N' << 16 | 'C' << 8 | 'E')
|
||||
|
||||
/*
|
||||
* enum channel_serverstate
|
||||
|
|
Loading…
Reference in New Issue