mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-29 22:15:17 -04:00
htc: implement (fixing linker errors) through HtclowManagerImpl::OpenDriver
This commit is contained in:
parent
1687bf2e07
commit
c878123274
30 changed files with 582 additions and 22 deletions
|
@ -16,6 +16,20 @@
|
|||
#include <stratosphere.hpp>
|
||||
#include "impl/settings_serial_number_impl.hpp"
|
||||
|
||||
namespace ams::settings::factory {
|
||||
|
||||
Result GetSerialNumber(SerialNumber *out) {
|
||||
const Result result = settings::impl::GetSerialNumber(out);
|
||||
|
||||
if (!settings::ResultCalibrationDataFileSystemCorrupted::Includes(result) && !settings::ResultCalibrationDataCrcError::Includes(result)) {
|
||||
R_ABORT_UNLESS(result);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
namespace ams::settings::system {
|
||||
|
||||
void GetSerialNumber(SerialNumber *out) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue