boards/arm/sam34/sam3u-ek/src/sam_lcd.c: Appease nxstyle
The following nxstyle errrors are intentionally left. They are a part of a large table, which is not trivial to fix. boards/arm/sam34/sam3u-ek/src/sam_lcd.c:43:87: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:44:86: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:45:87: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:46:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:47:89: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:48:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:49:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:50:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:51:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:52:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:53:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:54:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:55:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:56:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:57:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:58:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:59:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:60:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:61:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:62:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:63:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:64:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:65:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:66:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:67:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:68:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:69:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:70:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:71:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:72:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:73:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:74:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:75:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:76:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:77:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:78:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:79:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:80:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:81:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:82:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:83:84: error: Long line found boards/arm/sam34/sam3u-ek/src/sam_lcd.c:84:84: error: Long line found
This commit is contained in:
parent
2829ecd18a
commit
c007f70de5
@ -384,10 +384,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 = SAM3UEK_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 = SAM3UEK_BPP, /* Bits-per-pixel */
|
||||
};
|
||||
|
||||
/* This is the standard, NuttX LCD driver object */
|
||||
@ -602,7 +602,7 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
|
||||
FAR const uint8_t *buffer,
|
||||
size_t npixels)
|
||||
{
|
||||
uint16_t *run = (uint16_t*)buffer;
|
||||
uint16_t *run = (uint16_t *)buffer;
|
||||
unsigned int i;
|
||||
|
||||
/* Buffer must be provided and aligned to a 16-bit address boundary */
|
||||
@ -651,6 +651,7 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
|
||||
sam_wrram(*run++);
|
||||
}
|
||||
#endif
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
@ -671,7 +672,7 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
|
||||
static int sam_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t *buffer,
|
||||
size_t npixels)
|
||||
{
|
||||
uint16_t *run = (uint16_t*)buffer;
|
||||
uint16_t *run = (uint16_t *)buffer;
|
||||
unsigned int i;
|
||||
|
||||
/* Buffer must be provided and aligned to a 16-bit address boundary */
|
||||
@ -715,6 +716,7 @@ static int sam_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t *buffer,
|
||||
*run++ = sam_rdram();
|
||||
}
|
||||
#endif
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user