Hi Alex,

There are callers in the same file "info_packet.c" 

-----Original Message-----
From: Alex Deucher <[email protected]> 
Sent: August 27, 2019 10:20
To: Wentland, Harry <[email protected]>
Cc: YueHaibing <[email protected]>; Wentland, Harry 
<[email protected]>; Li, Sun peng (Leo) <[email protected]>; Deucher, 
Alexander <[email protected]>; Koenig, Christian 
<[email protected]>; Zhou, David(ChunMing) <[email protected]>; 
[email protected]; [email protected]; Lakha, Bhawanpreet 
<[email protected]>; Koo, Anthony <[email protected]>; Othman, Ahmad 
<[email protected]>; Bernstein, Eric <[email protected]>; Cyr, Aric 
<[email protected]>; [email protected]; Tatla, Harmanprit 
<[email protected]>; [email protected]; 
[email protected]; [email protected]
Subject: Re: [PATCH 2/3] drm/amd/display: remove unused function 
setFieldWithMask

On Tue, Aug 27, 2019 at 10:01 AM Harry Wentland <[email protected]> wrote:
>
> On 2019-08-27 3:09 a.m., YueHaibing wrote:
> > After commit a9f54ce3c603 ("drm/amd/display: Refactoring VTEM"), 
> > there is no caller in tree.
> >
> > Reported-by: Hulk Robot <[email protected]> Signed-off-by: 
> > YueHaibing <[email protected]>
>
> Reviewed-by: Harry Wentland <[email protected]>
>

Applied.  Thanks!

Alex

> Harry
>
> > ---
> >  .../drm/amd/display/modules/info_packet/info_packet.c | 19 
> > -------------------
> >  1 file changed, 19 deletions(-)
> >
> > diff --git 
> > a/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c 
> > b/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
> > index 5f4b98d..d885d64 100644
> > --- a/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
> > +++ b/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
> > @@ -114,25 +114,6 @@ enum ColorimetryYCCDP {
> >       ColorimetryYCC_DP_ITU2020YCbCr  = 7,  };
> >
> > -void setFieldWithMask(unsigned char *dest, unsigned int mask, 
> > unsigned int value) -{
> > -     unsigned int shift = 0;
> > -
> > -     if (!mask || !dest)
> > -             return;
> > -
> > -     while (!((mask >> shift) & 1))
> > -             shift++;
> > -
> > -     //reset
> > -     *dest = *dest & ~mask;
> > -     //set
> > -     //dont let value span past mask
> > -     value = value & (mask >> shift);
> > -     //insert value
> > -     *dest = *dest | (value << shift);
> > -}
> > -
> >  void mod_build_vsc_infopacket(const struct dc_stream_state *stream,
> >               struct dc_info_packet *info_packet)  {
> >
> _______________________________________________
> amd-gfx mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
dri-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to