/* * tw9910 Driver header * * Copyright (C) 2008 Renesas Solutions Corp. * Kuninori Morimoto * * Based on ov772x.h * * Copyright (C) Kuninori Morimoto * * 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 __TW9910_H__ #define __TW9910_H__ #include enum tw9910_mpout_pin { TW9910_MPO_VLOSS, TW9910_MPO_HLOCK, TW9910_MPO_SLOCK, TW9910_MPO_VLOCK, TW9910_MPO_MONO, TW9910_MPO_DET50, TW9910_MPO_FIELD, TW9910_MPO_RTCO, }; struct tw9910_video_info { unsigned long buswidth; enum tw9910_mpout_pin mpout; }; #endif /* __TW9910_H__ */ et-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/ife
AgeCommit message (Collapse)AuthorFilesLines
2017-02-03net: Introduce ife encapsulation moduleYotam Gigi3-0/+163
This module is responsible for the ife encapsulation protocol encode/decode logics. That module can: - ife_encode: encode skb and reserve space for the ife meta header - ife_decode: decode skb and extract the meta header size - ife_tlv_meta_encode - encodes one tlv entry into the reserved ife header space. - ife_tlv_meta_decode - decodes one tlv entry from the packet - ife_tlv_meta_next - advance to the next tlv Reviewed-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Yotam Gigi <yotamg@mellanox.com> Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: Roman Mashak <mrv@mojatatu.com> Signed-off-by: David S. Miller <davem@davemloft.net>