File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ pub struct Madt {
60
60
61
61
impl Madt {
62
62
pub ( super ) fn init ( & ' static self ) {
63
- log:: debug!( "Storing AP trampoline at 0x1000" ) ;
63
+ log:: debug!( "storing AP trampoline at 0x1000" ) ;
64
64
65
65
let page_index = unsafe { smp_prepare_trampoline ( ) } ;
66
66
@@ -228,7 +228,7 @@ impl Iterator for MadtIterator {
228
228
0x80 ..=0xff => continue ,
229
229
230
230
_ => {
231
- log:: warn!( "Unknown MADT entry with id: {}" , header. entry_type) ;
231
+ log:: warn!( "unknown MADT entry with id: {}" , header. entry_type) ;
232
232
233
233
return None ;
234
234
}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ impl AcpiTable {
56
56
let xsdt = rsdp:: Rsdt :: < u64 > :: new ( xsdt_addr) ;
57
57
let header = AcpiHeader :: Xsdt ( xsdt) ;
58
58
59
- log:: debug!( "Found XSDT at {:#x}" , xsdt_addr) ;
59
+ log:: debug!( "found XSDT at {:#x}" , xsdt_addr) ;
60
60
61
61
Self { header }
62
62
}
@@ -65,7 +65,7 @@ impl AcpiTable {
65
65
let rsdt = rsdp:: Rsdt :: < u32 > :: new ( rsdt_addr) ;
66
66
let header = AcpiHeader :: Rsdt ( rsdt) ;
67
67
68
- log:: debug!( "Found RSDT at {:#x}" , rsdt_addr) ;
68
+ log:: debug!( "found RSDT at {:#x}" , rsdt_addr) ;
69
69
70
70
Self { header }
71
71
}
Original file line number Diff line number Diff line change @@ -300,13 +300,13 @@ pub fn init() -> Result<()> {
300
300
root_dir ( ) . inode ( ) . mkdir ( "proc" ) ?;
301
301
302
302
initramfs:: init ( ) ?;
303
- log:: info!( "Installed initramfs" ) ;
303
+ log:: info!( "installed initramfs" ) ;
304
304
305
305
devfs:: init ( ) ?;
306
- log:: info!( "Installed devfs" ) ;
306
+ log:: info!( "installed devfs" ) ;
307
307
308
308
procfs:: init ( ) ?;
309
- log:: info!( "Installed procfs" ) ;
309
+ log:: info!( "installed procfs" ) ;
310
310
311
311
Ok ( ( ) )
312
312
}
You can’t perform that action at this time.
0 commit comments