Message ID | 20190818155957.4029-1-christophe.jaillet@wanadoo.fr (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/amdgpu: Fix a typo in the include header guard of 'navi12_ip_offset.h' | expand |
Applied. thanks! Alex On Sun, Aug 18, 2019 at 9:33 PM Yuan, Xiaojie <Xiaojie.Yuan@amd.com> wrote: > > Reviewed-by: Xiaojie Yuan <xiaojie.yuan@amd.com> > > Xiaojie > > > On Aug 19, 2019, at 12:00 AM, Christophe JAILLET <christophe.jaillet@wanadoo.fr> wrote: > > > > '_navi10_ip_offset_HEADER' is already used in 'navi10_ip_offset.h', so use > > '_navi12_ip_offset_HEADER' instead here. > > > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> > > --- > > drivers/gpu/drm/amd/include/navi12_ip_offset.h | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/amd/include/navi12_ip_offset.h b/drivers/gpu/drm/amd/include/navi12_ip_offset.h > > index 229e8fddfcc1..6c2cc6296c06 100644 > > --- a/drivers/gpu/drm/amd/include/navi12_ip_offset.h > > +++ b/drivers/gpu/drm/amd/include/navi12_ip_offset.h > > @@ -18,8 +18,8 @@ > > * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN > > * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. > > */ > > -#ifndef _navi10_ip_offset_HEADER > > -#define _navi10_ip_offset_HEADER > > +#ifndef _navi12_ip_offset_HEADER > > +#define _navi12_ip_offset_HEADER > > > > #define MAX_INSTANCE 7 > > #define MAX_SEGMENT 5 > > -- > > 2.20.1 > > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel
diff --git a/drivers/gpu/drm/amd/include/navi12_ip_offset.h b/drivers/gpu/drm/amd/include/navi12_ip_offset.h index 229e8fddfcc1..6c2cc6296c06 100644 --- a/drivers/gpu/drm/amd/include/navi12_ip_offset.h +++ b/drivers/gpu/drm/amd/include/navi12_ip_offset.h @@ -18,8 +18,8 @@ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef _navi10_ip_offset_HEADER -#define _navi10_ip_offset_HEADER +#ifndef _navi12_ip_offset_HEADER +#define _navi12_ip_offset_HEADER #define MAX_INSTANCE 7 #define MAX_SEGMENT 5
'_navi10_ip_offset_HEADER' is already used in 'navi10_ip_offset.h', so use '_navi12_ip_offset_HEADER' instead here. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> --- drivers/gpu/drm/amd/include/navi12_ip_offset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)