Commit 491205bb authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: quatech_daqp_cs: spaces preferred around that '<<'

Fix the checkpatch.pl issues about:
CHECK: spaces preferred around that '<<' (ctx:VxV)
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e031642e
......@@ -79,10 +79,10 @@ struct daqp_private {
#define DAQP_AUX 15
#define DAQP_SCANLIST_DIFFERENTIAL 0x4000
#define DAQP_SCANLIST_GAIN(x) ((x)<<12)
#define DAQP_SCANLIST_CHANNEL(x) ((x)<<8)
#define DAQP_SCANLIST_GAIN(x) ((x) << 12)
#define DAQP_SCANLIST_CHANNEL(x) ((x) << 8)
#define DAQP_SCANLIST_START 0x0080
#define DAQP_SCANLIST_EXT_GAIN(x) ((x)<<4)
#define DAQP_SCANLIST_EXT_GAIN(x) ((x) << 4)
#define DAQP_SCANLIST_EXT_CHANNEL(x) (x)
#define DAQP_CONTROL_PACER_100kHz 0xc0
......
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