From fc59791583905f9e35a4ef0bc997c21ebc649a64 Mon Sep 17 00:00:00 2001 From: Harry Ho Date: Tue, 30 Mar 2021 15:53:20 +0800 Subject: [PATCH] jsonschema: mirny: fix clk_sel default value --- artiq/coredevice/coredevice_generic.schema.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/artiq/coredevice/coredevice_generic.schema.json b/artiq/coredevice/coredevice_generic.schema.json index d51f49343..7dcf85462 100644 --- a/artiq/coredevice/coredevice_generic.schema.json +++ b/artiq/coredevice/coredevice_generic.schema.json @@ -374,15 +374,14 @@ { "type": "integer", "minimum": 0, - "maximum": 3, - "default": 0 + "maximum": 3 }, { "type": "string", - "enum": ["xo", "mmcx", "sma"], - "default": "xo" + "enum": ["xo", "mmcx", "sma"] } - ] + ], + "default": 0 } }, "required": ["ports"]