aboutsummaryrefslogtreecommitdiff
path: root/board/etin/debris/phantom.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/etin/debris/phantom.c')
-rw-r--r--board/etin/debris/phantom.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/board/etin/debris/phantom.c b/board/etin/debris/phantom.c
index fcb4c40ea..63feb7c2c 100644
--- a/board/etin/debris/phantom.c
+++ b/board/etin/debris/phantom.c
@@ -159,16 +159,6 @@ void rtc_reset(void)
}
}
-inline unsigned bcd2bin (uchar n)
-{
- return ((((n >> 4) & 0x0F) * 10) + (n & 0x0F));
-}
-
-inline unsigned char bin2bcd (unsigned int n)
-{
- return (((n / 10) << 4) | (n % 10));
-}
-
static int get_century_flag(void)
{
int flag = 0;