Add newline at the end of the files.

This commit is contained in:
Enrico Fraccaroli
2022-12-13 14:25:16 -05:00
parent 565df959b1
commit 0965669f4b
64 changed files with 63 additions and 64 deletions
+1 -1
View File
@@ -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);
}
/// @}
/// @}
+1 -1
View File
@@ -496,4 +496,4 @@ void pci_debug_scan()
pr_default("--------------------------------------------------\n");
}
///! @endcond
///! @endcond
+1 -1
View File
@@ -1159,4 +1159,4 @@ int ata_finalize()
return 0;
}
/// @}
/// @}
+1 -1
View File
@@ -65,4 +65,4 @@ int fdc_finalize()
return 0;
}
/// @}
/// @}
+1 -1
View File
@@ -301,4 +301,4 @@ int keyboard_finalize()
return 0;
}
/// @}
/// @}
+1 -1
View File
@@ -240,4 +240,4 @@ void init_keymaps()
keymaps[KEYMAP_US][KEY_KP_DEC] = (keymap_t){ 0x532E, 0x532E, 0x5300, 0x5300 }; // 0x0053
}
/// @}
/// @}
+1 -1
View File
@@ -214,4 +214,4 @@ int mouse_finalize()
return 0;
}
/// @}
/// @}
+1 -1
View File
@@ -328,4 +328,4 @@ int ps2_initialize()
pr_debug("Status : %s (%3d | %02x)\n", dec_to_binary(status, 8), status, status);
return 0;
}
}
+1 -1
View File
@@ -160,4 +160,4 @@ int rtc_finalize()
return 0;
}
/// @}
/// @}
+1 -1
View File
@@ -31,4 +31,4 @@ int sys_ioctl(int fd, int request, void *data)
// Perform the ioctl.
return vfs_ioctl(file, request, data);
}
}
+1 -1
View File
@@ -60,4 +60,4 @@ int sys_creat(const char *path, mode_t mode)
// Return the file descriptor and increment it.
return fd;
}
}
+1 -1
View File
@@ -949,4 +949,4 @@ int proc_destroy_entry(const char *name, proc_dir_entry_t *parent)
return -ENOENT;
}
return 0;
}
}
+1 -1
View File
@@ -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);
}
}
+1 -1
View File
@@ -42,4 +42,4 @@ int sys_fstat(int fd, stat_t *buf)
}
return vfs_fstat(vfd->file_struct, buf);
}
}
+1 -1
View File
@@ -768,4 +768,4 @@ void update_process_profiling_timer(task_struct *proc)
proc->it_prof_value = 0;
}
}
}
}