1 // SPDX-License-Identifier: GPL-2.0 2 3 mod boot; 4 5 use kernel::prelude::*; 6 7 /// GSP runtime data. 8 /// 9 /// This is an empty pinned placeholder for now. 10 #[pin_data] 11 pub(crate) struct Gsp {} 12 13 impl Gsp { 14 pub(crate) fn new() -> impl PinInit<Self> { 15 pin_init!(Self {}) 16 } 17 } 18