summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/lpwr/rppg.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/lpwr/rppg.c')
-rw-r--r--drivers/gpu/nvgpu/lpwr/rppg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/lpwr/rppg.c b/drivers/gpu/nvgpu/lpwr/rppg.c
index 59948f35..553457f7 100644
--- a/drivers/gpu/nvgpu/lpwr/rppg.c
+++ b/drivers/gpu/nvgpu/lpwr/rppg.c
@@ -11,9 +11,9 @@
11 * more details. 11 * more details.
12 */ 12 */
13 13
14#include <nvgpu/pmu.h>
15
14#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
15#include "gk20a/pmu_gk20a.h"
16#include "gp106/pmu_gp106.h"
17#include "gm206/bios_gm206.h" 17#include "gm206/bios_gm206.h"
18#include "pstate/pstate.h" 18#include "pstate/pstate.h"
19 19
@@ -29,13 +29,13 @@ static void pmu_handle_rppg_init_msg(struct gk20a *g, struct pmu_msg *msg,
29 case NV_PMU_RPPG_MSG_ID_INIT_CTRL_ACK: 29 case NV_PMU_RPPG_MSG_ID_INIT_CTRL_ACK:
30 ctrlId = msg->msg.pg.rppg_msg.init_ctrl_ack.ctrl_id; 30 ctrlId = msg->msg.pg.rppg_msg.init_ctrl_ack.ctrl_id;
31 *success = 1; 31 *success = 1;
32 gp106_dbg_pmu("RPPG is acknowledged from PMU %x", 32 nvgpu_pmu_dbg(g, "RPPG is acknowledged from PMU %x",
33 msg->msg.pg.msg_type); 33 msg->msg.pg.msg_type);
34 break; 34 break;
35 } 35 }
36 } 36 }
37 37
38 gp106_dbg_pmu("RPPG is acknowledged from PMU %x", 38 nvgpu_pmu_dbg(g, "RPPG is acknowledged from PMU %x",
39 msg->msg.pg.msg_type); 39 msg->msg.pg.msg_type);
40} 40}
41 41