icE1usb fw: Don't expose some E1 helper functions globally

Not used anywhere and really shouldn't be

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Change-Id: I1e339d1b8faecffba5f8d73588b376edc7a75a96
diff --git a/firmware/ice40-riscv/icE1usb/e1.c b/firmware/ice40-riscv/icE1usb/e1.c
index f5e367e..59be063 100644
--- a/firmware/ice40-riscv/icE1usb/e1.c
+++ b/firmware/ice40-riscv/icE1usb/e1.c
@@ -21,13 +21,13 @@
 static volatile struct e1_core * const e1_regs = (void *)(E1_CORE_BASE);
 static volatile uint8_t * const e1_data = (void *)(E1_DATA_BASE);
 
-unsigned int
+static unsigned int
 e1_data_ofs(int mf, int frame, int ts)
 {
 	return (mf << 9) | (frame << 5) | ts;
 }
 
-volatile uint8_t *
+static volatile uint8_t *
 e1_data_ptr(int mf, int frame, int ts)
 {
 	return &e1_data[e1_data_ofs(mf, frame, ts)];