Add return value to gram_init
authorJean THOMAS <git0@pub.jeanthomas.me>
Mon, 3 Aug 2020 10:38:52 +0000 (12:38 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Mon, 3 Aug 2020 10:38:52 +0000 (12:38 +0200)
libgram/src/init.c

index 68bd0d573f5b4b01a68780cfd68da3d237e129f2..d869f0eb95fd8912d23c2c5ee120554ebbf67da4 100644 (file)
@@ -10,4 +10,6 @@ int gram_init(struct gramCtx *ctx, const struct gramProfile *profile, void *ddr_
        dfii_initseq(ctx, profile);
        gram_load_calibration(ctx, profile);
        dfii_setsw(ctx, false);
+
+    return GRAM_ERR_NONE;
 }