Changeset 614 for GPL/branches/uniaud32-linux-3.2.102
- Timestamp:
- May 16, 2020, 10:38:27 AM (5 years ago)
- Location:
- GPL/branches/uniaud32-linux-3.2.102
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-linux-3.2.102/alsa-kernel/core/control.c
r612 r614 459 459 * You don't need to call snd_ctl_free_one(). You must be in 460 460 * the write lock - down_write(&card->controls_rwsem). 461 * 461 * 462 462 * Returns 0 if successful, or a negative error code on failure. 463 463 */ … … 484 484 * @card: the card instance 485 485 * @id: the control id to remove 486 * 486 * 487 487 * Finds the control instance with the given id, removes it from the 488 488 * card list and releases it. -
GPL/branches/uniaud32-linux-3.2.102/include/linux/kernel.h
r612 r614 67 67 printk(KERN_INFO fmt,##arg) 68 68 69 #define pr_warn(fmt, arg ) \69 #define pr_warn(fmt, arg, ...) \ 70 70 printk(KERN_WARNING fmt, ##arg) 71 71 -
GPL/branches/uniaud32-linux-3.2.102/include/linux/string.h
r612 r614 12 12 13 13 char *kstrdup(const char *s, unsigned int gfp_flags); 14 void *memdup_user(const void __user *src, size_t len); 14 15 #define strnlen strnlen_s 16 _WCRTLINK extern size_t strnlen_s( const char *__s, size_t __maxsize ); 15 17 #endif 16 18 -
GPL/branches/uniaud32-linux-3.2.102/include/linux/workqueue.h
r612 r614 59 59 #define INIT_DELAYED_WORK(_work, _func) INIT_WORK(&(_work)->work, _func) 60 60 #define work_pending(work) test_bit(0, &(work)->pending) 61 int schedule_work(struct work_struct *works); 61 62 #define delayed_work_pending(w) work_pending(&(w)->work) 62 63 #define schedule_delayed_work(work, delay) queue_delayed_work(NULL, (work), (delay)) -
GPL/branches/uniaud32-linux-3.2.102/include/proto.h
r518 r614 1 extern void *memdup_user(void __user *src, size_t len);2 1 extern void snd_free_dev_pages(struct device *dev, size_t size, void *ptr, dma_addr_t dma); 3 2 extern void *snd_malloc_dev_pages(struct device *dev, size_t size, dma_addr_t *dma); -
GPL/branches/uniaud32-linux-3.2.102/lib32/misc.c
r598 r614 399 399 //****************************************************************************** 400 400 //****************************************************************************** 401 void *memdup_user( void __user *src, size_t len)401 void *memdup_user(const void __user *src, size_t len) 402 402 { 403 403 void *p = kmalloc(len, GFP_KERNEL);
Note:
See TracChangeset
for help on using the changeset viewer.