blob: 76b7ead14df2528af5853abc5143305cb119c9f8 [file] [log] [blame] [edit]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use hwsec_utils::context::RealContext;
use hwsec_utils::gsc::gsc_reset;
fn main() {
let mut real_ctx = RealContext::new();
if gsc_reset(&mut real_ctx).is_err() {
eprintln!("Cr50 Reset Error.");
}
}