summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-11-14 11:09:10 -0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-11-14 23:56:44 +0000
commitf154a8b95d4e08b10b96f0d72166fb1ebcbc3f61 (patch)
treecf7da86582a9c93f5b2777a155f076212aeddead
parentae55a28dfc4fdb9216aca367b8665ad6108e53fb (diff)
downloadchrome-ec-f154a8b95d4e08b10b96f0d72166fb1ebcbc3f61.tar.gz
cr50: Update TODO comments with new bug numbers
Just changing comments, no code. BUG=chrome-os-partner:33432 BRANCH=none TEST=make buildall -j Change-Id: Ibffda40bff23a8c685feaef30a85e19157566245 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/229860 Reviewed-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--board/cr50/board.c2
-rw-r--r--board/cr50/gpio.inc2
-rw-r--r--chip/g/clock.c2
-rw-r--r--chip/g/config_chip.h2
-rw-r--r--chip/g/gpio.c2
-rw-r--r--chip/g/system.c4
-rw-r--r--chip/g/uart.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/board/cr50/board.c b/board/cr50/board.c
index 4c99befe58..cc5774117c 100644
--- a/board/cr50/board.c
+++ b/board/cr50/board.c
@@ -14,7 +14,7 @@
/* Initialize board. */
static void board_init(void)
{
- /* TODO(crosbug.com/p/33432): Try enabling this */
+ /* TODO(crosbug.com/p/33812): Try enabling this */
/* gpio_enable_interrupt(GPIO_CAMO0_BREACH_INT); */
}
DECLARE_HOOK(HOOK_INIT, board_init, HOOK_PRIO_DEFAULT);
diff --git a/board/cr50/gpio.inc b/board/cr50/gpio.inc
index c6036a02f8..11808fb852 100644
--- a/board/cr50/gpio.inc
+++ b/board/cr50/gpio.inc
@@ -5,7 +5,7 @@
*/
/* Inputs with interrupt handlers are first for efficiency */
-/* TODO(crosbug.com/p/33432): try enabling this */
+/* TODO(crosbug.com/p/33816): try enabling this */
/* GPIO(CAMO0_BREACH_INT, A, 0, GPIO_INT_BOTH, button_event) */
/* Outputs */
diff --git a/chip/g/clock.c b/chip/g/clock.c
index 691cf8ccb0..a4bcdb5e40 100644
--- a/chip/g/clock.c
+++ b/chip/g/clock.c
@@ -302,7 +302,7 @@ static void switch_osc_to_xtl(void)
void clock_init(void)
{
/*
- * TODO(crosbug.com/p/33432): The following comment was in the example
+ * TODO(crosbug.com/p/33813): The following comment was in the example
* code, but the function that's called doesn't match what it says.
* Investigate further.
*/
diff --git a/chip/g/config_chip.h b/chip/g/config_chip.h
index b121638986..16e7c9abd1 100644
--- a/chip/g/config_chip.h
+++ b/chip/g/config_chip.h
@@ -19,7 +19,7 @@
#define CONFIG_FLASH_BASE 0x40000
#define CONFIG_FLASH_PHYSICAL_SIZE (512 * 1024)
/* flash chip specifics */
-/* TODO(crosbug.com/p/33432): These are probably wrong. Don't use them yet. */
+/* TODO(crosbug.com/p/33815): These are probably wrong. Don't use them yet. */
#define CONFIG_FLASH_BANK_SIZE 0x00000800 /* protect bank size */
#define CONFIG_FLASH_ERASE_SIZE 0x00000400 /* erase bank size */
#define CONFIG_FLASH_WRITE_SIZE 0x00000004 /* minimum write size */
diff --git a/chip/g/gpio.c b/chip/g/gpio.c
index 59d8d4fd4b..01f73e5344 100644
--- a/chip/g/gpio.c
+++ b/chip/g/gpio.c
@@ -7,7 +7,7 @@
#include "gpio.h"
#include "hooks.h"
-/* TODO(crosbug.com/p/33432): We don't have any GPIOs defined yet! */
+/* TODO(crosbug.com/p/33816): We don't have any GPIOs defined yet! */
test_mockable int gpio_get_level(enum gpio_signal signal)
{
diff --git a/chip/g/system.c b/chip/g/system.c
index 1124a15062..167e68f406 100644
--- a/chip/g/system.c
+++ b/chip/g/system.c
@@ -11,7 +11,7 @@ void system_pre_init(void)
}
-/* TODO(crosbug.com/p/33432): How do we force a reset? */
+/* TODO(crosbug.com/p/33818): How do we force a reset? */
void system_reset(int flags)
{
@@ -32,7 +32,7 @@ const char *system_get_chip_revision(void)
return G_REVISION_STR;
}
-/* TODO(crosbug.com/p/33432): Where can we store stuff persistently? */
+/* TODO(crosbug.com/p/33822): Where can we store stuff persistently? */
int system_get_vbnvcontext(uint8_t *block)
{
diff --git a/chip/g/uart.c b/chip/g/uart.c
index 6b33deecfa..e78dfed7f8 100644
--- a/chip/g/uart.c
+++ b/chip/g/uart.c
@@ -33,7 +33,7 @@ void uart_tx_start(void)
* UART where the FIFO only triggers the interrupt when its
* threshold is _crossed_, not just met.
*/
- /* TODO(crosbug.com/p/33432): Do we need this hack here? Find out. */
+ /* TODO(crosbug.com/p/33819): Do we need this hack here? Find out. */
REG_WRITE_MASK(G_UART_ICTRL(0), 0x01, 0x01, 0);
task_trigger_irq(G_IRQNUM_UART0_TXINT);
}