From: David Howells Date: Wed, 5 Dec 2012 01:25:28 +0000 (+1030) Subject: ASN.1: Define indefinite length marker constant X-Git-Tag: upstream/snapshot3+hdmi~6008^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=facc0a6bd494ce21e31b34fc355ecf702518272b;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ASN.1: Define indefinite length marker constant Define a constant to hold the marker value seen in an indefinite-length element. Signed-off-by: David Howells Signed-off-by: Rusty Russell --- diff --git a/include/linux/asn1.h b/include/linux/asn1.h index 5c3f4e4..eed6982 100644 --- a/include/linux/asn1.h +++ b/include/linux/asn1.h @@ -64,4 +64,6 @@ enum asn1_tag { ASN1_LONG_TAG = 31 /* Long form tag */ }; +#define ASN1_INDEFINITE_LENGTH 0x80 + #endif /* _LINUX_ASN1_H */