Commit e27b10aa authored by David Binder's avatar David Binder Committed by Greg Kroah-Hartman

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: default avatarDavid Binder <david.binder@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e8ffed83
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment