1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 04:10:56 +00:00

Fix a typing error.

I found a typing error on line 82, which typed `long` into `log`. 

fix #780
This commit is contained in:
SPC 2021-07-14 18:15:33 +08:00 committed by GitHub
parent 743ac26f60
commit 5ae9e61d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ After we sanitized CPU configuration, we call `__startup_64` function which is d
``` ```
```C ```C
unsigned log __head __startup_64(unsigned long physaddr, unsigned long __head __startup_64(unsigned long physaddr,
struct boot_params *bp) struct boot_params *bp)
{ {
unsigned long load_delta, *p; unsigned long load_delta, *p;