On 08/22/17 22:23, Robert Elz wrote:
Module Name: src Committed By: kre Date: Tue Aug 22 21:23:58 UTC 2017 Modified Files: src/sys/arch/shark/shark: sequoia.h Log Message: Add () around "1 << n' in #define's, without it ~NAME is "~1 << n" which is not what is wanted at all (and which caused the << of a negative number issue.) Making the values unsigned is harmless (perhaps even better) so those that were changed are still that way.
Joerg should have used __BIT() in the first place... Nick