modules: cleanup header comments

This commit is contained in:
K. Lange 2021-08-30 13:07:07 +09:00
parent c6fade0edc
commit 2cf304ea31
2 changed files with 14 additions and 6 deletions

View File

@ -1,9 +1,11 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
/**
* @file modules/iso9660.c
* @brief ISO9660 "High Sierra" CD file system driver.
*
* @copyright
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2016-2018 K. Lange
*
* ISO 9660 filesystem driver (for CDs)
* Copyright (C) 2016-2021 K. Lange
*/
#include <kernel/types.h>
#include <kernel/vfs.h>

View File

@ -1,7 +1,13 @@
/* vim: tabstop=4 shiftwidth=4 noexpandtab
/**
* @file modules/pcspkr.c
* @brief PC beeper device interface
*
* Use with @ref apps/beep.c to play music.
*
* @copyright
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2014-2018 K. Lange
* Copyright (C) 2014-2021 K. Lange
*/
#include <kernel/module.h>
#include <kernel/printf.h>