From cd778cf9915689f14fbf7bd4499edd186993bc9e Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Thu, 8 Dec 2016 05:20:12 -0500
Subject: [PATCH] service: Drop '_Interface' in ptm service class names

Inheriting from Service::Interface makes this obvious.
---
 src/core/hle/service/ptm/ptm.cpp      | 10 +++++-----
 src/core/hle/service/ptm/ptm_play.cpp |  2 +-
 src/core/hle/service/ptm/ptm_play.h   |  4 ++--
 src/core/hle/service/ptm/ptm_sysm.cpp |  2 +-
 src/core/hle/service/ptm/ptm_sysm.h   |  4 ++--
 src/core/hle/service/ptm/ptm_u.cpp    |  2 +-
 src/core/hle/service/ptm/ptm_u.h      |  4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp
index 771fd1323..da7d56ced 100644
--- a/src/core/hle/service/ptm/ptm.cpp
+++ b/src/core/hle/service/ptm/ptm.cpp
@@ -108,11 +108,11 @@ void CheckNew3DS(Service::Interface* self) {
 }
 
 void Init() {
-    AddService(new PTM_Gets());
-    AddService(new PTM_Play_Interface);
-    AddService(new PTM_Sets());
-    AddService(new PTM_Sysm_Interface);
-    AddService(new PTM_U_Interface);
+    AddService(new PTM_Gets);
+    AddService(new PTM_Play);
+    AddService(new PTM_Sets);
+    AddService(new PTM_Sysm);
+    AddService(new PTM_U);
 
     shell_open = true;
     battery_is_charging = true;
diff --git a/src/core/hle/service/ptm/ptm_play.cpp b/src/core/hle/service/ptm/ptm_play.cpp
index 2e0c6e1a3..3fb7e14ca 100644
--- a/src/core/hle/service/ptm/ptm_play.cpp
+++ b/src/core/hle/service/ptm/ptm_play.cpp
@@ -14,7 +14,7 @@ const Interface::FunctionInfo FunctionTable[] = {
     {0x080B0080, nullptr, "CalcPlayHistoryStart"},
 };
 
-PTM_Play_Interface::PTM_Play_Interface() {
+PTM_Play::PTM_Play() {
     Register(FunctionTable);
 }
 
diff --git a/src/core/hle/service/ptm/ptm_play.h b/src/core/hle/service/ptm/ptm_play.h
index 47f229581..663faabee 100644
--- a/src/core/hle/service/ptm/ptm_play.h
+++ b/src/core/hle/service/ptm/ptm_play.h
@@ -9,9 +9,9 @@
 namespace Service {
 namespace PTM {
 
-class PTM_Play_Interface : public Service::Interface {
+class PTM_Play final : public Interface {
 public:
-    PTM_Play_Interface();
+    PTM_Play();
 
     std::string GetPortName() const override {
         return "ptm:play";
diff --git a/src/core/hle/service/ptm/ptm_sysm.cpp b/src/core/hle/service/ptm/ptm_sysm.cpp
index 82e118e2b..f6d8c0c82 100644
--- a/src/core/hle/service/ptm/ptm_sysm.cpp
+++ b/src/core/hle/service/ptm/ptm_sysm.cpp
@@ -42,7 +42,7 @@ const Interface::FunctionInfo FunctionTable[] = {
     {0x08180040, nullptr, "ConfigureNew3DSCPU"},
 };
 
-PTM_Sysm_Interface::PTM_Sysm_Interface() {
+PTM_Sysm::PTM_Sysm() {
     Register(FunctionTable);
 }
 
diff --git a/src/core/hle/service/ptm/ptm_sysm.h b/src/core/hle/service/ptm/ptm_sysm.h
index e37f20546..e9938a530 100644
--- a/src/core/hle/service/ptm/ptm_sysm.h
+++ b/src/core/hle/service/ptm/ptm_sysm.h
@@ -9,9 +9,9 @@
 namespace Service {
 namespace PTM {
 
-class PTM_Sysm_Interface : public Interface {
+class PTM_Sysm final : public Interface {
 public:
-    PTM_Sysm_Interface();
+    PTM_Sysm();
 
     std::string GetPortName() const override {
         return "ptm:sysm";
diff --git a/src/core/hle/service/ptm/ptm_u.cpp b/src/core/hle/service/ptm/ptm_u.cpp
index 65e868393..e0b65ba89 100644
--- a/src/core/hle/service/ptm/ptm_u.cpp
+++ b/src/core/hle/service/ptm/ptm_u.cpp
@@ -26,7 +26,7 @@ const Interface::FunctionInfo FunctionTable[] = {
     {0x000F0084, nullptr, "GetStepHistoryAll"},
 };
 
-PTM_U_Interface::PTM_U_Interface() {
+PTM_U::PTM_U() {
     Register(FunctionTable);
 }
 
diff --git a/src/core/hle/service/ptm/ptm_u.h b/src/core/hle/service/ptm/ptm_u.h
index bf132f610..7b75d6e49 100644
--- a/src/core/hle/service/ptm/ptm_u.h
+++ b/src/core/hle/service/ptm/ptm_u.h
@@ -9,9 +9,9 @@
 namespace Service {
 namespace PTM {
 
-class PTM_U_Interface : public Interface {
+class PTM_U final : public Interface {
 public:
-    PTM_U_Interface();
+    PTM_U();
 
     std::string GetPortName() const override {
         return "ptm:u";