summaryrefslogtreecommitdiff
path: root/test/stress.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/stress.c')
-rw-r--r--test/stress.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/test/stress.c b/test/stress.c
index c9c5d7fa36..58a727adbe 100644
--- a/test/stress.c
+++ b/test/stress.c
@@ -31,23 +31,12 @@ struct i2c_test_param_t {
int offset;
int data; /* Non-negative represents data to write. -1 to read. */
} i2c_test_params[] = {
-#ifdef BOARD_SPRING
- {8, 0, 0x60, 0x0, -1},
- {8, 0, 0x60, 0x0, 0x40},
- {8, 0, 0x4a, 0x1, -1},
-#elif defined(BOARD_LINK)
- {8, 0, 0x16, 0x8, -1},
- {8, 0, 0x16, 0x9, -1},
- {8, 0, 0x16, 0xa, -1},
-#elif defined(BOARD_PIT)
+#if defined(BOARD_PIT)
{8, 0, 0x90, 0x19, -1},
-#elif defined(BOARD_SNOW)
- {8, 1, 0x90, 0x19, -1},
#endif
};
/* Disable I2C test for boards without test configuration */
-#if defined(BOARD_BDS) || defined(BOARD_MCCROSKEY) || \
- defined(BOARD_FALCO) || defined(BOARD_PEPPY) || defined(BOARD_AURON)
+#if defined(BOARD_BDS) || defined(BOARD_AURON)
#undef CONFIG_I2C
#endif