mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 07:12:54 +08:00
boards: nxstyle fixes
fixes for nxstyle errors reported by the tool. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
committed by
Xiang Xiao
parent
72041911ce
commit
f8420a9e47
@@ -401,10 +401,10 @@ static const struct fb_videoinfo_s g_videoinfo =
|
||||
|
||||
static const struct lcd_planeinfo_s g_planeinfo =
|
||||
{
|
||||
.putrun = sam_putrun, /* Put a run into LCD memory */
|
||||
.getrun = sam_getrun, /* Get a run from LCD memory */
|
||||
.buffer = (uint8_t*)g_runbuffer, /* Run scratch buffer */
|
||||
.bpp = SAM_BPP, /* Bits-per-pixel */
|
||||
.putrun = sam_putrun, /* Put a run into LCD memory */
|
||||
.getrun = sam_getrun, /* Get a run from LCD memory */
|
||||
.buffer = (uint8_t *)g_runbuffer, /* Run scratch buffer */
|
||||
.bpp = SAM_BPP, /* Bits-per-pixel */
|
||||
};
|
||||
|
||||
/* This is the standard, NuttX LCD driver object */
|
||||
@@ -582,6 +582,7 @@ static void sam_dumprun(FAR const char *msg, FAR uint16_t *run,
|
||||
{
|
||||
syslog(LOG_DEBUG, " %04x", *run++);
|
||||
}
|
||||
|
||||
up_putc('\n');
|
||||
}
|
||||
}
|
||||
@@ -607,7 +608,8 @@ static void sam_disable_backlight(void)
|
||||
* Name: sam_set_backlight
|
||||
*
|
||||
* Description:
|
||||
* The the backlight to the level associated with the specified power value.
|
||||
* The the backlight to the level associated with the specified power
|
||||
* value.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
@@ -691,11 +693,11 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
|
||||
size_t npixels)
|
||||
{
|
||||
#if defined(CONFIG_SAM4EEK_LCD_RGB565)
|
||||
FAR const uint16_t *src = (FAR const uint16_t*)buffer;
|
||||
FAR const uint16_t *src = (FAR const uint16_t *)buffer;
|
||||
#elif defined(CONFIG_SAM4EEK_LCD_RGB24)
|
||||
FAR const uint8_t *src = (FAR const uint8_t*)buffer;
|
||||
FAR const uint8_t *src = (FAR const uint8_t *)buffer;
|
||||
#elif defined(CONFIG_SAM4EEK_LCD_RGB32)
|
||||
FAR const uint32_t *src = (FAR const uint32_t*)buffer;
|
||||
FAR const uint32_t *src = (FAR const uint32_t *)buffer;
|
||||
#endif
|
||||
|
||||
/* Buffer must be provided and aligned to a 16-bit address boundary */
|
||||
@@ -1133,7 +1135,8 @@ static void sam_lcd9325_initialize(void)
|
||||
sam_write_reg(ILI9325_GAMMA_CTRL9,
|
||||
ILI9325_GAMMA_CTRL9_RN1(7) | ILI9325_GAMMA_CTRL9_RN0(1));
|
||||
sam_write_reg(ILI9325_GAMMA_CTRL10,
|
||||
ILI9325_GAMMA_CTRL10_VRN1(0) | ILI9325_GAMMA_CTRL10_VRN0(14));
|
||||
ILI9325_GAMMA_CTRL10_VRN1(0) |
|
||||
ILI9325_GAMMA_CTRL10_VRN0(14));
|
||||
|
||||
/* Set the Entry Mode:
|
||||
*
|
||||
|
||||
@@ -407,10 +407,10 @@ static const struct fb_videoinfo_s g_videoinfo =
|
||||
|
||||
static const struct lcd_planeinfo_s g_planeinfo =
|
||||
{
|
||||
.putrun = sam_putrun, /* Put a run into LCD memory */
|
||||
.getrun = sam_getrun, /* Get a run from LCD memory */
|
||||
.buffer = (uint8_t*)g_runbuffer, /* Run scratch buffer */
|
||||
.bpp = SAM_BPP, /* Bits-per-pixel */
|
||||
.putrun = sam_putrun, /* Put a run into LCD memory */
|
||||
.getrun = sam_getrun, /* Get a run from LCD memory */
|
||||
.buffer = (uint8_t *)g_runbuffer, /* Run scratch buffer */
|
||||
.bpp = SAM_BPP, /* Bits-per-pixel */
|
||||
};
|
||||
|
||||
/* This is the standard, NuttX LCD driver object */
|
||||
@@ -730,11 +730,11 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
|
||||
size_t npixels)
|
||||
{
|
||||
#if defined(CONFIG_SAM4EEK_LCD_RGB565)
|
||||
FAR const uint16_t *src = (FAR const uint16_t*)buffer;
|
||||
FAR const uint16_t *src = (FAR const uint16_t *)buffer;
|
||||
#elif defined(CONFIG_SAM4EEK_LCD_RGB24)
|
||||
FAR const uint8_t *src = (FAR const uint8_t*)buffer;
|
||||
FAR const uint8_t *src = (FAR const uint8_t *)buffer;
|
||||
#elif defined(CONFIG_SAM4EEK_LCD_RGB32)
|
||||
FAR const uint32_t *src = (FAR const uint32_t*)buffer;
|
||||
FAR const uint32_t *src = (FAR const uint32_t *)buffer;
|
||||
#endif
|
||||
|
||||
/* Buffer must be provided and aligned to a 16-bit address boundary */
|
||||
@@ -788,11 +788,11 @@ static int sam_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t *buffer,
|
||||
size_t npixels)
|
||||
{
|
||||
#if defined(CONFIG_SAM4EEK_LCD_RGB565)
|
||||
FAR uint16_t *dest = (FAR uint16_t*)buffer;
|
||||
FAR uint16_t *dest = (FAR uint16_t *)buffer;
|
||||
#elif defined(CONFIG_SAM4EEK_LCD_RGB24)
|
||||
FAR uint8_t *dest = (FAR uint8_t*)buffer;
|
||||
FAR uint8_t *dest = (FAR uint8_t *)buffer;
|
||||
#elif defined(dest)
|
||||
FAR uint32_t *dest = (FAR uint32_t*)buffer;
|
||||
FAR uint32_t *dest = (FAR uint32_t *)buffer;
|
||||
#endif
|
||||
|
||||
/* Buffer must be provided and aligned to a 16-bit address boundary */
|
||||
|
||||
@@ -54,8 +54,8 @@
|
||||
#ifdef CONFIG_ARCH_LEDS
|
||||
|
||||
/* If CONFIG_ARCH_LEDs is defined, then NuttX will control the LED on
|
||||
* board the SAM4S Xplained Pro. The following definitions describe how NuttX
|
||||
* controls the LEDs:
|
||||
* board the SAM4S Xplained Pro.
|
||||
* The following definitions describe how NuttX controls the LEDs:
|
||||
*
|
||||
* SYMBOL Meaning LED state
|
||||
* D9 D10
|
||||
|
||||
Reference in New Issue
Block a user