Changeset 637 for GPL/branches/uniaud32-next/include/linux
- Timestamp:
- Jan 7, 2021, 8:54:42 PM (5 years ago)
- Location:
- GPL/branches/uniaud32-next/include/linux
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/bitops.h
r615 r637 41 41 * Undefined if no bit exists, so code should check against 0 first. 42 42 */ 43 static unsigned long __ffs(unsigned long word)43 static inline unsigned long __ffs(unsigned long word) 44 44 { 45 45 int num = 0; … … 78 78 * Undefined if no set bit exists, so code should check against 0 first. 79 79 */ 80 static unsigned long __fls(unsigned long word)80 static inline unsigned long __fls(unsigned long word) 81 81 { 82 82 int num = BITS_PER_LONG - 1; -
GPL/branches/uniaud32-next/include/linux/kernel.h
r615 r637 97 97 int strict_strtoul(const char *, unsigned int, unsigned long *); 98 98 99 #define BUG_ON(condition) 100 #define WARN_ON(condition) 0101 #define WARN_ON_ONCE(condition) 099 #define BUG_ON(condition) 100 #define WARN_ON(condition) (void)0 101 #define WARN_ON_ONCE(condition) (void)0 102 102 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) 103 103 #define SIZE_MAX (~(size_t)0) -
GPL/branches/uniaud32-next/include/linux/platform_device.h
r305 r637 94 94 drv->driver.remove = snd_platform_driver_remove; 95 95 if (drv->suspend) 96 drv->driver.suspend = snd_platform_driver_suspend;96 drv->driver.suspend = (int(*)(struct device *,unsigned int))snd_platform_driver_suspend; 97 97 if (drv->resume) 98 98 drv->driver.resume = snd_platform_driver_resume; -
GPL/branches/uniaud32-next/include/linux/printk.h
r615 r637 8 8 #define pr_warn pr_warning 9 9 #else 10 #define pr_debug 11 #define pr_err 10 #define pr_debug(...) 11 #define pr_err(...) 12 12 #define pr_info printk 13 13 #define pr_warning printk
Note:
See TracChangeset
for help on using the changeset viewer.
