Changeset 324 for GPL/branches
- Timestamp:
- Mar 25, 2008, 4:46:42 AM (17 years ago)
- Location:
- GPL/branches/uniaud32-2.0
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-2.0/alsa-kernel/core/memalloc.c
r305 r324 89 89 #ifdef CONFIG_SND_DEBUG 90 90 #define __ASTRING__(x) #x 91 #ifndef TARGET_OS2 91 92 #define snd_assert(expr, args...) do {\ 92 93 if (!(expr)) {\ … … 96 97 } while (0) 97 98 #else 98 #ifndef TARGET_OS299 #define snd_assert(expr, args...) /**/100 #else101 99 #define snd_assert(expr, retval) \ 102 100 if (!(expr)) {\ … … 104 102 ##retval;\ 105 103 } 104 #endif 105 #else 106 #ifndef TARGET_OS2 107 #define snd_assert(expr, args...) /**/ 108 #else 109 #define snd_assert(expr, retval) (void)(expr) 106 110 #endif 107 111 #endif -
GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/core.h
r317 r324 415 415 * not checked. 416 416 */ 417 #ifndef TARGET_OS2 417 418 #define snd_assert(expr, args...) do { \ 418 419 if (unlikely(!(expr))) { \ … … 422 423 } \ 423 424 } while (0) 424 425 #define snd_BUG() do { \ 426 snd_printk(KERN_ERR "BUG?\n"); \ 427 dump_stack(); \ 428 } while (0) 429 430 #else /* !CONFIG_SND_DEBUG */ 431 432 #ifndef TARGET_OS2 433 #define snd_printd(fmt, args...) /* nothing */ 434 #define snd_assert(expr, args...) (void)(expr) 435 #else 436 #define snd_printd snd_printk 425 #else 437 426 #define snd_assert(expr, retval) \ 438 427 if (!(expr)) {\ … … 440 429 ##retval;\ 441 430 } 431 #endif 432 #define snd_BUG() do { \ 433 snd_printk(KERN_ERR "BUG?\n"); \ 434 dump_stack(); \ 435 } while (0) 436 437 #else /* !CONFIG_SND_DEBUG */ 438 439 #ifndef TARGET_OS2 440 #define snd_printd(fmt, args...) /* nothing */ 441 #define snd_assert(expr, args...) (void)(expr) 442 #else 443 #define snd_printd snd_printk 444 #define snd_assert(expr, retval) (void)(expr) 442 445 #endif 443 446 #define snd_BUG() /* nothing */ -
GPL/branches/uniaud32-2.0/include/version.h
r316 r324 14 14 #define VENDOR_NAME "Netlabs" 15 15 #define PRODUCT_TIMESTAMP 20080325L // YYYYMMDD 16 #define UNIAUD_VERSION "1.9. 0-"16 #define UNIAUD_VERSION "1.9.1" 17 17 #define ALSA_VERSION "1.0.16" 18 18 19 19 20 #define RM_VERSION 19 020 #define RM_VERSION 191 21 21 #define RM_DRIVER_NAME "UNIAUD32.SYS" 22 22 #define RM_DRIVER_DESCRIPTION "OS/2 Universal Audio 32 Driver" -
GPL/branches/uniaud32-2.0/lib32/sound.c
r320 r324 1061 1061 ret = pHandle->file.f_op->ioctl(&pHandle->inode, &pHandle->file, SNDRV_PCM_IOCTL_STATUS, (ULONG)__Stack32ToFlat(&status)); 1062 1062 if ( ((status.state != SNDRV_PCM_STATE_PREPARED) && 1063 (status.state != SNDRV_PCM_STATE_SETUP) && 1063 1064 (status.state != SNDRV_PCM_STATE_RUNNING) && 1064 1065 (status.state != SNDRV_PCM_STATE_DRAINING))) { -
GPL/branches/uniaud32-2.0/uniaud.inc
r308 r324 7 7 # BUILDVERSION must be 3 parts, and only numbers like 5.44.108 8 8 # It is best that 2'nd number is always 2 digits, eg at least 10 9 BUILDVERSION = 1.9. 09 BUILDVERSION = 1.9.1 10 10 11 11 # Fixpack version
Note:
See TracChangeset
for help on using the changeset viewer.