tegra: hwpm: th500: correct config flag name

Recently, TH500 HWPM config flag was renamed to CONFIG_TEGRA_HWPM_TH500.
Correct the config flag name in init.c and acpi.h files.

Jira THWPM-112

Change-Id: I9fcc40cd2529c0e5e6894bda95f6d8248e8b61cd
Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-hwpm/+/3167472
Reviewed-by: Seema Khowala <seemaj@nvidia.com>
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
Reviewed-by: Vasuki Shankar <vasukis@nvidia.com>
This commit is contained in:
Vedashree Vidwans
2024-06-02 23:41:25 -07:00
committed by mobile promotions
parent 095fc3dea0
commit 5705145f59
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
/* /*
* SPDX-FileCopyrightText: Copyright (c) 2021-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-FileCopyrightText: Copyright (c) 2021-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* *
* Permission is hereby granted, free of charge, to any person obtaining a * Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"), * copy of this software and associated documentation files (the "Software"),
@@ -63,7 +63,7 @@ static int tegra_hwpm_init_chip_ip_structures(struct tegra_soc_hwpm *hwpm,
break; break;
} }
break; break;
#ifdef CONFIG_TEGRA_TH500_HWPM #ifdef CONFIG_TEGRA_HWPM_TH500
case 0x50: case 0x50:
switch (chip_id_rev) { switch (chip_id_rev) {
case 0x0: case 0x0:

View File

@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
/* /*
* Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. * Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* *
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License, * under the terms and conditions of the GNU General Public License,
@@ -25,13 +25,13 @@
* bit 15:08 - chip id * bit 15:08 - chip id
* bit 07:04 - chip id revision * bit 07:04 - chip id revision
*/ */
#if defined(CONFIG_TEGRA_TH500_HWPM) #if defined(CONFIG_TEGRA_HWPM_TH500)
static const unsigned long hwpm_th500_device_data = static const unsigned long hwpm_th500_device_data =
(PLAT_SI << 20U) | (0x50U << 8U) | (0x0 << 4U); (PLAT_SI << 20U) | (0x50U << 8U) | (0x0 << 4U);
#endif #endif
static const struct acpi_device_id tegra_hwpm_acpi_match[] = { static const struct acpi_device_id tegra_hwpm_acpi_match[] = {
#if defined(CONFIG_TEGRA_TH500_HWPM) #if defined(CONFIG_TEGRA_HWPM_TH500)
{ {
.id = "NVDA2006", .id = "NVDA2006",
.driver_data = hwpm_th500_device_data, .driver_data = hwpm_th500_device_data,