theWord           503 sound/pci/korg1212/korg1212.c #define SetBitInWord(theWord,bitPosition)       (*theWord) |= (0x0001 << bitPosition)
theWord           504 sound/pci/korg1212/korg1212.c #define SetBitInDWord(theWord,bitPosition)      (*theWord) |= (0x00000001 << bitPosition)
theWord           505 sound/pci/korg1212/korg1212.c #define ClearBitInWord(theWord,bitPosition)     (*theWord) &= ~(0x0001 << bitPosition)
theWord           506 sound/pci/korg1212/korg1212.c #define ClearBitInDWord(theWord,bitPosition)    (*theWord) &= ~(0x00000001 << bitPosition)