From 8b0fe90af6a0ca6af71a821f9753e9a5bbf7d3dc Mon Sep 17 00:00:00 2001 From: averne Date: Sun, 27 Jan 2019 12:05:40 +0100 Subject: [PATCH] nfpu: move code to nfc.c/h --- nx/include/switch.h | 2 +- nx/include/switch/services/{nfpu.h => nfc.h} | 0 nx/source/services/{nfpu.c => nfc.c} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename nx/include/switch/services/{nfpu.h => nfc.h} (100%) rename nx/source/services/{nfpu.c => nfc.c} (99%) diff --git a/nx/include/switch.h b/nx/include/switch.h index 72ff7996..e2ee6963 100644 --- a/nx/include/switch.h +++ b/nx/include/switch.h @@ -83,7 +83,7 @@ extern "C" { #include "switch/services/psc.h" #include "switch/services/caps.h" #include "switch/services/capssu.h" -#include "switch/services/nfpu.h" +#include "switch/services/nfc.h" #include "switch/display/binder.h" #include "switch/display/parcel.h" diff --git a/nx/include/switch/services/nfpu.h b/nx/include/switch/services/nfc.h similarity index 100% rename from nx/include/switch/services/nfpu.h rename to nx/include/switch/services/nfc.h diff --git a/nx/source/services/nfpu.c b/nx/source/services/nfc.c similarity index 99% rename from nx/source/services/nfpu.c rename to nx/source/services/nfc.c index 7b9a37a3..216a2be5 100644 --- a/nx/source/services/nfpu.c +++ b/nx/source/services/nfc.c @@ -2,7 +2,7 @@ #include "arm/atomics.h" #include "services/hid.h" #include "services/applet.h" -#include "services/nfpu.h" +#include "services/nfc.h" static u64 g_refCnt; static Service g_nfpuSrv;