1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-08 13:11:49 +00:00

thermosphere: remove dead code

This commit is contained in:
TuxSH 2020-03-09 18:42:31 +00:00
parent 548367453b
commit 6bcb5aca60

View file

@ -18,15 +18,6 @@
#include "../../../defines.hpp"
#define CONFIGURE_UART_DECL(n)\
void ConfigureUart##n() const\
{\
m_regs->uart##n##_tx = 0;\
m_regs->uart##n##_rx = INPUT | PULL_UP;\
m_regs->uart##n##_rts = 0;\
m_regs->uart##n##_cts = INPUT | PULL_DOWN;\
}
namespace ams::hvisor::drivers::tegra::t210 {
class Pinmux final {
@ -255,5 +246,3 @@ namespace ams::hvisor::drivers::tegra::t210 {
}
};
}
#undef CONFIGURE_UART_DECL