aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/SSD1289
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-10-21 17:11:07 +1000
committerinmarket <andrewh@inmarket.com.au>2013-10-21 17:11:07 +1000
commit0698fd28c03e20704376cf6c97f373ba9c5e8c4b (patch)
tree7fd5fd846a5290aed8fe00c004c87a1af9f7e6e0 /drivers/gdisp/SSD1289
parent0535c67eab412e72223bc06a528c5bf7cd4aeb22 (diff)
downloaduGFX-0698fd28c03e20704376cf6c97f373ba9c5e8c4b.tar.gz
uGFX-0698fd28c03e20704376cf6c97f373ba9c5e8c4b.tar.bz2
uGFX-0698fd28c03e20704376cf6c97f373ba9c5e8c4b.zip
Comment fixes.
Diffstat (limited to 'drivers/gdisp/SSD1289')
-rw-r--r--drivers/gdisp/SSD1289/board_SSD1289_firebullstm32f103.h2
-rw-r--r--drivers/gdisp/SSD1289/board_SSD1289_stm32f4discovery.h2
-rw-r--r--drivers/gdisp/SSD1289/board_SSD1289_template.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gdisp/SSD1289/board_SSD1289_firebullstm32f103.h b/drivers/gdisp/SSD1289/board_SSD1289_firebullstm32f103.h
index 3277a902..2a7ffe1e 100644
--- a/drivers/gdisp/SSD1289/board_SSD1289_firebullstm32f103.h
+++ b/drivers/gdisp/SSD1289/board_SSD1289_firebullstm32f103.h
@@ -14,7 +14,7 @@
#define _GDISP_LLD_BOARD_H
// For a multiple display configuration we would put all this in a structure and then
-// set g->priv to that structure.
+// set g->board to that structure.
#define SET_CS palSetPad(GPIOD, 12);
#define CLR_CS palClearPad(GPIOD, 12);
#define SET_RS palSetPad(GPIOD, 13);
diff --git a/drivers/gdisp/SSD1289/board_SSD1289_stm32f4discovery.h b/drivers/gdisp/SSD1289/board_SSD1289_stm32f4discovery.h
index 81ce0512..866311dc 100644
--- a/drivers/gdisp/SSD1289/board_SSD1289_stm32f4discovery.h
+++ b/drivers/gdisp/SSD1289/board_SSD1289_stm32f4discovery.h
@@ -14,7 +14,7 @@
#define _GDISP_LLD_BOARD_H
// For a multiple display configuration we would put all this in a structure and then
-// set g->priv to that structure.
+// set g->board to that structure.
#define GDISP_REG ((volatile uint16_t *) 0x60000000)[0] /* RS = 0 */
#define GDISP_RAM ((volatile uint16_t *) 0x60020000)[0] /* RS = 1 */
#define GDISP_DMA_STREAM STM32_DMA2_STREAM6
diff --git a/drivers/gdisp/SSD1289/board_SSD1289_template.h b/drivers/gdisp/SSD1289/board_SSD1289_template.h
index 8bef95b9..7c9cd757 100644
--- a/drivers/gdisp/SSD1289/board_SSD1289_template.h
+++ b/drivers/gdisp/SSD1289/board_SSD1289_template.h
@@ -21,7 +21,7 @@
*
* @param[in] g The GDisplay structure
*
- * @note Set the g->priv member to whatever is appropriate. For multiple
+ * @note Set the g->board member to whatever is appropriate. For multiple
* displays this might be a pointer to the appropriate register set.
*
* @notapi