summaryrefslogtreecommitdiff
path: root/firmware/drivers/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/i2c.c')
-rw-r--r--firmware/drivers/i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/i2c.c b/firmware/drivers/i2c.c
index 8cc7c78a2d..b3a53240b4 100644
--- a/firmware/drivers/i2c.c
+++ b/firmware/drivers/i2c.c
@@ -54,7 +54,7 @@
54/* arbitrary delay loop */ 54/* arbitrary delay loop */
55#define DELAY do { int _x; for(_x=0;_x<20;_x++);} while (0) 55#define DELAY do { int _x; for(_x=0;_x<20;_x++);} while (0)
56 56
57static struct mutex i2c_mtx; 57static struct mutex i2c_mtx SHAREDBSS_ATTR;
58 58
59void i2c_begin(void) 59void i2c_begin(void)
60{ 60{