Remove some instances of _U_ where the parameter is now used.

svn path=/trunk/; revision=36148
This commit is contained in:
Martin Mathieson 2011-03-06 23:10:28 +00:00
parent d36178cd5d
commit 4d3d029e09
3 changed files with 12 additions and 12 deletions

View File

@ -840,11 +840,11 @@ static int dissect_pdcp_dynamic_chain(proto_tree *tree,
static int dissect_pdcp_irdyn_packet(proto_tree *tree _U_,
static int dissect_pdcp_irdyn_packet(proto_tree *tree,
proto_item *root_item,
tvbuff_t *tvb _U_,
tvbuff_t *tvb,
int offset,
struct pdcp_lte_info *p_pdcp_info _U_,
struct pdcp_lte_info *p_pdcp_info,
packet_info *pinfo)
{
col_append_str(pinfo->cinfo, COL_INFO, " IRDYN");
@ -1037,8 +1037,8 @@ static int dissect_pdcp_feedback_feedback2(proto_tree *tree,
tvbuff_t *tvb,
int offset,
int size,
struct pdcp_lte_info *p_pdcp_info _U_,
packet_info *pinfo _U_)
struct pdcp_lte_info *p_pdcp_info,
packet_info *pinfo)
{
proto_item *ti;
guint8 ack_type;
@ -1223,7 +1223,7 @@ static int dissect_pdcp_r_0_packet(proto_tree *tree,
proto_item *root_item,
tvbuff_t *tvb,
int offset,
struct pdcp_lte_info *p_pdcp_info _U_,
struct pdcp_lte_info *p_pdcp_info,
packet_info *pinfo)
{
guint8 sn;

View File

@ -1092,7 +1092,7 @@ static void checkChannelSequenceInfo(packet_info *pinfo, tvbuff_t *tvb,
/* Add to the tree values associated with sequence analysis for this frame */
static void addChannelRepeatedNACKInfo(rlc_channel_repeated_nack_report_in_frame *p,
rlc_lte_info *p_rlc_lte_info _U_,
rlc_lte_info *p_rlc_lte_info,
packet_info *pinfo, proto_tree *tree,
tvbuff_t *tvb)
{
@ -1250,7 +1250,7 @@ static void dissect_rlc_lte_tm(tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree,
int offset,
rlc_lte_info *p_rlc_lte_info,
proto_item *top_ti _U_)
proto_item *top_ti)
{
proto_item *raw_tm_ti;
proto_item *tm_ti;

View File

@ -471,7 +471,7 @@ static void dissect_cpch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_t
static void dissect_bch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, struct fp_info *p_fp_info);
static void dissect_iur_dsch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, struct fp_info *p_fp_info _U_);
int offset, struct fp_info *p_fp_info);
static void dissect_hsdsch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, struct fp_info *p_fp_info);
static void dissect_hsdsch_type_2_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
@ -1901,7 +1901,7 @@ static void dissect_bch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tr
/********************************/
/* Dissect an IUR DSCH channel */
static void dissect_iur_dsch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, struct fp_info *p_fp_info _U_)
int offset, struct fp_info *p_fp_info)
{
gboolean is_control_frame;
@ -2636,8 +2636,8 @@ static void dissect_e_dch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_
}
/* Dissect the remainder of the T2 or common frame that differs from T1 */
static void dissect_e_dch_t2_or_common_channel_info(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
int offset, struct fp_info *p_fp_info _U_,
static void dissect_e_dch_t2_or_common_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
int offset, struct fp_info *p_fp_info,
int number_of_subframes,
gboolean is_common)
{