#ifndef __DRM_I2C_TDA998X_H__ #define __DRM_I2C_TDA998X_H__ #include #include enum { AFMT_UNUSED = 0, AFMT_SPDIF = TDA998x_SPDIF, AFMT_I2S = TDA998x_I2S, }; struct tda998x_audio_params { u8 config; u8 format; unsigned sample_width; unsigned sample_rate; struct hdmi_audio_infoframe cea; u8 status[5]; }; struct tda998x_encoder_params { u8 swap_b:3; u8 mirr_b:1; u8 swap_a:3; u8 mirr_a:1; u8 swap_d:3; u8 mirr_d:1; u8 swap_c:3; u8 mirr_c:1; u8 swap_f:3; u8 mirr_f:1; u8 swap_e:3; u8 mirr_e:1; struct tda998x_audio_params audio_params; }; #endif t Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-10-28 09:27:58 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2016-10-28 09:27:58 -0700
commite0f3e6a7ccc002be056b6a21768fceee0d44941e (patch)
tree2a37947a080ea84ef14d8d0a68c5e995e0505bf7 /Documentation/pnp.txt
parent43937003de5b677781b2fe4c871d628ab00cc341 (diff)
parentdafa724bf582181d9a7d54f5cb4ca0bf8ef29269 (diff)
Merge tag 'dm-4.9-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
Pull device mapper fixes from Mike Snitzer: - a couple DM raid and DM mirror fixes - a couple .request_fn request-based DM NULL pointer fixes - a fix for a DM target reference count leak, on target load error, that prevented associated DM target kernel module(s) from being removed * tag 'dm-4.9-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm: dm table: fix missing dm_put_target_type() in dm_table_add_target() dm rq: clear kworker_task if kthread_run() returned an error dm: free io_barrier after blk_cleanup_queue call dm raid: fix activation of existing raid4/10 devices dm mirror: use all available legs on multiple failures dm mirror: fix read error on recovery after default leg failure dm raid: fix compat_features validation
Diffstat (limited to 'Documentation/pnp.txt')