Add newline at the end of the files.
This commit is contained in:
+1
-1
@@ -292,4 +292,4 @@ void boot_main(uint32_t magic, multiboot_info_t *header, uint32_t esp)
|
||||
boot_kernel(boot_info.stack_base, elf_hdr->entry, &boot_info);
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -496,4 +496,4 @@ void pci_debug_scan()
|
||||
pr_default("--------------------------------------------------\n");
|
||||
}
|
||||
|
||||
///! @endcond
|
||||
///! @endcond
|
||||
|
||||
@@ -1159,4 +1159,4 @@ int ata_finalize()
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -65,4 +65,4 @@ int fdc_finalize()
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -301,4 +301,4 @@ int keyboard_finalize()
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -240,4 +240,4 @@ void init_keymaps()
|
||||
keymaps[KEYMAP_US][KEY_KP_DEC] = (keymap_t){ 0x532E, 0x532E, 0x5300, 0x5300 }; // 0x0053
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -214,4 +214,4 @@ int mouse_finalize()
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -328,4 +328,4 @@ int ps2_initialize()
|
||||
pr_debug("Status : %s (%3d | %02x)\n", dec_to_binary(status, 8), status, status);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -160,4 +160,4 @@ int rtc_finalize()
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// @}
|
||||
/// @}
|
||||
|
||||
@@ -31,4 +31,4 @@ int sys_ioctl(int fd, int request, void *data)
|
||||
|
||||
// Perform the ioctl.
|
||||
return vfs_ioctl(file, request, data);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,4 +60,4 @@ int sys_creat(const char *path, mode_t mode)
|
||||
|
||||
// Return the file descriptor and increment it.
|
||||
return fd;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -949,4 +949,4 @@ int proc_destroy_entry(const char *name, proc_dir_entry_t *parent)
|
||||
return -ENOENT;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,4 +93,4 @@ off_t sys_lseek(int fd, off_t offset, int whence)
|
||||
}
|
||||
// Perform the lseek.
|
||||
return vfs_lseek(vfd->file_struct, offset, whence);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -42,4 +42,4 @@ int sys_fstat(int fd, stat_t *buf)
|
||||
}
|
||||
|
||||
return vfs_fstat(vfd->file_struct, buf);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -768,4 +768,4 @@ void update_process_profiling_timer(task_struct *proc)
|
||||
proc->it_prof_value = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user