arch/sim/src/sim/: Remove unnecessary initialization log from simulator initialization.

This commit is contained in:
Xiang Xiao 2019-12-16 08:59:28 -06:00 committed by Gregory Nutt
parent af5d0d3157
commit 6c362c8521
2 changed files with 0 additions and 11 deletions

View File

@ -182,15 +182,6 @@ static void up_init_smartfs(void)
void up_initialize(void)
{
#ifdef CONFIG_NET
/* The real purpose of the following is to make sure that syslog
* is drawn into the link. It is needed by up_tapdev which is linked
* separately.
*/
syslog(LOG_INFO, "SIM: Initializing\n");
#endif
#ifdef CONFIG_PM
/* Initialize the power management subsystem. This MCU-specific function
* must be called *very* early in the initialization sequence *before* any

View File

@ -193,7 +193,6 @@ static int up_x11untraperrors(void)
static void up_x11uninitX(void)
{
fprintf(stderr, "Uninitializing X\n");
if (g_x11initialized)
{
#ifndef CONFIG_SIM_X11NOSHM
@ -397,7 +396,6 @@ int up_x11initialize(unsigned short width, unsigned short height,
{
depth = 32;
}
printf("Pixel bpp is %d bits (using %d)\n", windowAttributes.depth, depth);
*bpp = depth;
*stride = (depth * width / 8);