schema compile BUGFIX anyxml/anydata use warning

... should not be displayed in case they are used
in RPC/action/notification.
diff --git a/src/schema_compile_node.c b/src/schema_compile_node.c
index 56580eb..df9496f 100644
--- a/src/schema_compile_node.c
+++ b/src/schema_compile_node.c
@@ -3014,7 +3014,7 @@
         LY_CHECK_GOTO(ret, done);
     }
 
-    if (any->flags & LYS_CONFIG_W) {
+    if (!(ctx->options & (LYS_COMPILE_RPC_MASK | LYS_COMPILE_NOTIFICATION)) && (any->flags & LYS_CONFIG_W)) {
         LOGWRN(ctx->ctx, "Use of %s to define configuration data is not recommended. %s",
                 ly_stmt2str(any->nodetype == LYS_ANYDATA ? LY_STMT_ANYDATA : LY_STMT_ANYXML), ctx->path);
     }