blob: e45aa40dd755bc06c21b9a2b6f6ab37eef6351f9 [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
pub mod aml;
pub mod rsdp;
pub mod sdt;
pub use self::sdt::HEADER_LEN;
fn generate_checksum(data: &[u8]) -> u8 {
(255 - data.iter().fold(0u8, |acc, x| acc.wrapping_add(*x))).wrapping_add(1)
}