/* * linux/sound/cs42l73.h -- Platform data for CS42L73 * * Copyright (c) 2012 Cirrus Logic Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef __CS42L73_H #define __CS42L73_H struct cs42l73_platform_data { /* RST GPIO */ unsigned int reset_gpio; unsigned int chgfreq; int jack_detection; unsigned int mclk_freq; }; #endif /* __CS42L73_H */ ry'/>
summaryrefslogtreecommitdiff
path: root/include/uapi
diff options
context:
space:
mode:
authorSean Young <sean@mess.org>2016-11-26 19:31:24 -0200
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-12-01 12:46:00 -0200
commitb40769ee2ed09ed6c6da33b0cbdf423ff94f685b (patch)
tree1cde9fd2230e29b051db457b9b6b47f4ae130658 /include/uapi
parent003611334d5592984e319e08c6b66825aca00290 (diff)
[media] lirc: fix error paths in lirc_cdev_add()
"c77d17c0 [media] lirc: use-after free" introduces two problems: cdev_del() can be called with a NULL argument, and the kobject_put() path will cause a double free. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/uapi')