summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cs40l26/cs40l26.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/cs40l26/cs40l26.c b/cs40l26/cs40l26.c
index 86a15d9..d666f4c 100644
--- a/cs40l26/cs40l26.c
+++ b/cs40l26/cs40l26.c
@@ -25,18 +25,6 @@ static inline bool is_buzz(unsigned int index)
index <= CS40L26_BUZZGEN_INDEX_END);
}
-static inline bool is_ram(unsigned int index)
-{
- return (index >= CS40L26_RAM_INDEX_START &&
- index <= CS40L26_RAM_INDEX_END);
-}
-
-static inline bool is_rom(unsigned int index)
-{
- return (index >= CS40L26_ROM_INDEX_START &&
- index <= CS40L26_ROM_INDEX_END);
-}
-
static inline bool section_complete(struct cs40l26_owt_section *s)
{
return s->delay ? true : false;