Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1739 → Rev 1740

/uspace/trunk/ns/ns.c
26,8 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup ns Naming Service
* @brief Naming service for HelenOS IPC.
/** @addtogroup ns
* @{
*/
 
/uspace/trunk/softint/generic/division.c
26,8 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup softint SoftInt
* @brief Software implementation of basic arithmetic operations.
/** @addtogroup softint
* @{
*/
/**
/uspace/trunk/fb/fb.c
27,13 → 27,9
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup fbs Framebuffers
* @brief HelenOS framebuffers.
* @{
* @}
*/
/** @defgroup fb Framebuffer
* @brief HelenOS framebuffer.
/**
* @defgroup fb Graphical framebuffer
* @brief HelenOS graphical framebuffer.
* @ingroup fbs
* @{
*/
/uspace/trunk/kbd/generic/kbd.c
26,12 → 26,8
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup kbd Keyboard handler
* @brief HelenOS uspace keyboard handler.
* @{
* @}
*/
/** @addtogroup kbdgen generic
/**
* @addtogroup kbdgen generic
* @brief HelenOS generic uspace keyboard handler.
* @ingroup kbd
* @{
/uspace/trunk/kbd/arch/ia64/src/kbd.c
100,7 → 100,6
//keybuffer_push(keybuffer, ' ');
//*/
if (scan_code){
buf|=(unsigned long long) scan_code<<(8*(count++));
} else {
115,9 → 114,9
esc_count=0;
}
if ( ! ( buf & 0xff00 ))
if (!(buf & 0xff00)) {
keybuffer_push(keybuffer, buf);
else {
} else {
switch (buf){
case KEY_F1:
keybuffer_push(keybuffer,FUNCTION_KEYS | 1 );
143,7 → 142,6
case KEY_F8:
keybuffer_push(keybuffer,FUNCTION_KEYS | 8 );
break;
 
case KEY_F9:
keybuffer_push(keybuffer,FUNCTION_KEYS | 9 );
break;
150,7 → 148,6
case KEY_F10:
keybuffer_push(keybuffer,FUNCTION_KEYS | 10 );
break;
 
case KEY_F11:
keybuffer_push(keybuffer,FUNCTION_KEYS | 11 );
break;
157,8 → 154,6
case KEY_F12:
keybuffer_push(keybuffer,FUNCTION_KEYS | 12 );
break;
 
 
}
}
buf=count=0;
/uspace/trunk/softfloat/generic/other.c
33,7 → 33,5
*/
 
 
 
/** @}
*/
 
/uspace/trunk/softfloat/generic/softfloat.c
26,11 → 26,6
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup sfl Softfloat
* @brief Software FPU emulation.
* @{
* @}
*/
/** @addtogroup softfloat generic
* @ingroup sfl
* @brief Architecture independent parts of FPU software emulation library.
/uspace/trunk/softfloat/generic/div.c
360,7 → 360,5
return result;
}
 
 
/** @}
*/
 
/uspace/trunk/softfloat/generic/conversion.c
589,8 → 589,5
return result;
}
 
 
 
/** @}
*/
 
/uspace/trunk/softfloat/generic/add.c
255,8 → 255,5
return a;
}
 
 
 
/** @}
*/
 
/uspace/trunk/softfloat/generic/common.c
210,7 → 210,6
return;
}
 
 
/** @}
*/
 
/uspace/trunk/softfloat/generic/comparison.c
125,9 → 125,5
}
 
 
 
 
/** @}
*/
 
/uspace/trunk/softfloat/generic/mul.c
290,8 → 290,5
return;
}
 
 
 
/** @}
*/
 
/uspace/trunk/softfloat/arch/ia32/include/functions.h
71,7 → 71,5
 
#endif
 
 
/** @}
*/
 
/uspace/trunk/console/console.c
26,8 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup console Console
* @brief HelenOS console.
/** @addtogroup console
* @{
*/
/** @file
532,4 → 531,3
/** @}
*/
 
/uspace/trunk/doc/doxygroups.h
0,0 → 1,56
 
/* Definitions of modules and its relations for generating Doxygen documentation */
 
/**
* @defgroup srvcs HelenOS Services
* @ingroup uspace
*/
 
/**
* @defgroup ns Naming Service
* @ingroup srvcs
*/
 
/**
* @defgroup kbd Keyboard Service
* @ingroup srvcs
*/
 
/**
* @defgroup fbs Framebuffer Service
* @ingroup srvcs
*/
/**
* @defgroup console Console Service
* @ingroup srvcs
*/
/**
* @cond amd64
* @defgroup pci PCI Service
* @ingroup srvcs
* @endcond
*/
/**
* @cond ia32
* @defgroup pci PCI Service
* @ingroup srvcs
* @endcond
*/
/**
* @defgroup emul Emulation Libraries
* @ingroup uspace
*/
/**
* @defgroup sfl Softloat
* @ingroup emul
*/
/**
* @defgroup softint Softint
* @ingroup emul
*/
/uspace/trunk/pci/pci.c
9,6 → 9,11
* Can be freely distributed and used under the terms of the GNU GPL.
*/
 
/**
* @addtogroup pci
* @{
*/
 
#include <stdio.h>
#include <ddi.h>
#include <task.h>
79,3 → 84,7
pci_cleanup(pacc);
return 0;
}
 
/**
* @}
*/