Martin Roth (gaumless@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8174
-gerrit
commit c2622c3157d29d22092792b1c51557a5e31a4f21 Author: Martin Roth gaumless@gmail.com Date: Tue Jan 6 21:05:23 2015 -0700
src/include: Doxygen fixes
- Join doxygen file command with the file description - Give extended file location so doxygen knows which early_sbmus.h the file is. (I don't get this either, but it fixes the warning)
Change-Id: Ia91fb1ac1e9687e1a5a5cb5234696b3c24d4cd24 Signed-off-by: Martin Roth gaumless@gmail.com --- src/include/console/post_codes.h | 5 ++++- src/include/device/early_smbus.h | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/include/console/post_codes.h b/src/include/console/post_codes.h index 9f9b788..b2db2da 100644 --- a/src/include/console/post_codes.h +++ b/src/include/console/post_codes.h @@ -20,7 +20,9 @@
/** * @file post_codes.h - * + */ + +/* * This aims to be a central point for POST codes used throughout coreboot. * All POST codes should be declared here as macros, and post_code() should * be used with the macros instead of hardcoded values. This allows us to @@ -40,6 +42,7 @@ * without any explanation or effort on part of the maintainers. * */ + #ifndef POST_CODES_H #define POST_CODES_H
diff --git a/src/include/device/early_smbus.h b/src/include/device/early_smbus.h index 5e15bb1..437a569 100644 --- a/src/include/device/early_smbus.h +++ b/src/include/device/early_smbus.h @@ -18,7 +18,7 @@ */
/** - * @file early_smbus.h + * @file device/early_smbus.h * * This file defines a common API for accessing the SMBus during early * initialization. It defines the prototypes for common SMBus functions. The