Commit 3bcba888 authored by Jeff Garzik's avatar Jeff Garzik

[netdrvr s2io] correct an incorrect cleanup I made

parent 0b19c1e5
......@@ -14,7 +14,7 @@
#define _S2IO_H
#define TBD 0
#define BIT(loc) (1ULL << (loc))
#define BIT(loc) (0x8000000000000000ULL >> (loc))
#define vBIT(val, loc, sz) (((u64)val) << (64-loc-sz))
#ifndef BOOL
......
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