summaryrefslogtreecommitdiff
path: root/software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-08-25 23:42:20 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-02-27 21:09:14 +0200
commit20a71f3ba955816815f8d6d147ce630ae4764e3a (patch)
treedaedbe026d0eb0a1d36ce9318fbf17bba586fcd8 /software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c
parent38382864db28a166ddc3bb5b96b81180a65e27fe (diff)
begin the process of filtering out the parts of the API we don't use
git-svn-id: http://svn.asterisk.org/svn/octasic_api/oct612x/trunk@8 537310ab-6354-42db-a3cc-247b777f7be6
Diffstat (limited to 'software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c')
-rw-r--r--software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c
index 8a1a1b9..0c797c1 100644
--- a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c
+++ b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c
@@ -77,6 +77,7 @@ f_pApiInstance Pointer to API instance. This memory is used to keep
the present state of the chip and all its resources.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
+#if !SKIP_Oct6100ApiProcessTlvRegion
UINT32 Oct6100ApiProcessTlvRegion(
tPOCT6100_INSTANCE_API f_pApiInstance )
{
@@ -224,6 +225,7 @@ UINT32 Oct6100ApiProcessTlvRegion(
return cOCT6100_ERR_OK;
}
+#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
@@ -244,6 +246,7 @@ f_ulTlvFieldLength Byte length of the TLV field.
f_ulTlvValueAddress Address where the data of the TLV block starts.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
+#if !SKIP_Oct6100ApiInterpretTlvEntry
UINT32 Oct6100ApiInterpretTlvEntry(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulTlvFieldType,
@@ -1957,6 +1960,7 @@ UINT32 Oct6100ApiInterpretTlvEntry(
return ulResult;
}
+#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
@@ -1973,6 +1977,7 @@ f_ulMinLengthValue Minimum value supported for the TLV.
f_ulMaxLengthValue Maximum value supported for the TLV.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
+#if !SKIP_Oct6100ApiTlvCheckLengthField
UINT32 Oct6100ApiTlvCheckLengthField(
IN UINT32 f_ulTlvFieldLength,
IN UINT32 f_ulMinLengthValue,
@@ -1992,6 +1997,7 @@ UINT32 Oct6100ApiTlvCheckLengthField(
return cOCT6100_ERR_OK;
}
+#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
@@ -2010,6 +2016,7 @@ f_ulAddress Address where the read the TLV information.
f_pBitOffsetStruct Pointer to a bit offset stucture.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
+#if !SKIP_Oct6100ApiTlvReadBitOffsetStruct
UINT32 Oct6100ApiTlvReadBitOffsetStruct(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulAddress,
@@ -2079,3 +2086,4 @@ UINT32 Oct6100ApiTlvReadBitOffsetStruct(
return cOCT6100_ERR_OK;
}
+#endif