mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-01 15:28:21 -04:00
strat: fix board namespacing for nintendo::nx
This commit is contained in:
parent
a26e8ac54f
commit
30e70e20d8
46 changed files with 57 additions and 57 deletions
|
@ -17,7 +17,7 @@
|
|||
#include "impl/i2c_bus_manager.hpp"
|
||||
#include "impl/i2c_device_property_manager.hpp"
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx {
|
||||
namespace ams::i2c::driver::board::nintendo::nx {
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <stratosphere.hpp>
|
||||
#include "i2c_bus_accessor.hpp"
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx::impl {
|
||||
namespace ams::i2c::driver::board::nintendo::nx::impl {
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -17,12 +17,12 @@
|
|||
#include <stratosphere.hpp>
|
||||
#include "i2c_i2c_registers.hpp"
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx::impl {
|
||||
namespace ams::i2c::driver::board::nintendo::nx::impl {
|
||||
|
||||
class I2cBusAccessor : public ::ams::i2c::driver::II2cDriver {
|
||||
NON_COPYABLE(I2cBusAccessor);
|
||||
NON_MOVEABLE(I2cBusAccessor);
|
||||
AMS_DDSF_CASTABLE_TRAITS(ams::i2c::driver::board::nintendo_nx::impl::I2cBusAccessor, ::ams::i2c::driver::II2cDriver);
|
||||
AMS_DDSF_CASTABLE_TRAITS(ams::i2c::driver::board::nintendo::nx::impl::I2cBusAccessor, ::ams::i2c::driver::II2cDriver);
|
||||
private:
|
||||
enum class State {
|
||||
NotInitialized = 0,
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include "i2c_bus_accessor.hpp"
|
||||
#include "i2c_i_allocator.hpp"
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx::impl {
|
||||
namespace ams::i2c::driver::board::nintendo::nx::impl {
|
||||
|
||||
class I2cBusAccessorManager : public IAllocator<I2cBusAccessor::BusAccessorList> {
|
||||
/* ... */
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include <stratosphere.hpp>
|
||||
#include "i2c_i_allocator.hpp"
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx::impl {
|
||||
namespace ams::i2c::driver::board::nintendo::nx::impl {
|
||||
|
||||
class I2cDevicePropertyManager : public IAllocator<I2cDeviceProperty::DevicePropertyList> {
|
||||
/* ... */
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#pragma once
|
||||
#include <stratosphere.hpp>
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx::impl {
|
||||
namespace ams::i2c::driver::board::nintendo::nx::impl {
|
||||
|
||||
struct I2cRegisters {
|
||||
volatile u32 cnfg;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#pragma once
|
||||
#include <stratosphere.hpp>
|
||||
|
||||
namespace ams::i2c::driver::board::nintendo_nx::impl {
|
||||
namespace ams::i2c::driver::board::nintendo::nx::impl {
|
||||
|
||||
template<typename ListType>
|
||||
class IAllocator {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue