Removed remaining references of nfc from system

This commit is contained in:
David Marcec
2018-10-12 19:15:28 +11:00
parent 35589010e6
commit 58005c75dd
2 changed files with 0 additions and 7 deletions

View File

@@ -175,8 +175,6 @@ struct System::Impl {
GetAndResetPerfStats();
perf_stats.BeginSystemFrame();
nfc_activate = Kernel::Event::Create(kernel, Kernel::ResetType::OneShot, "Nfc:ActivateTag");
return ResultStatus::Success;
}
@@ -291,10 +289,6 @@ struct System::Impl {
std::array<std::unique_ptr<std::thread>, NUM_CPU_CORES - 1> cpu_core_threads;
std::size_t active_core{}; ///< Active core, only used in single thread mode
/// NFC Loading
Kernel::SharedPtr<Kernel::Event> nfc_activate;
std::string nfc_filename;
/// Service manager
std::shared_ptr<Service::SM::ServiceManager> service_manager;

View File

@@ -23,7 +23,6 @@ namespace Kernel {
class KernelCore;
class Process;
class Scheduler;
class Event;
} // namespace Kernel
namespace Loader {