Call set_nonce direct rather than by wrapper

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 714e556..9fb3a20 100644
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -3569,8 +3569,7 @@
     if( status != PSA_SUCCESS )
         goto exit;
 
-    status = psa_driver_wrapper_aead_set_nonce( operation, nonce,
-                                                required_nonce_size );
+    status = psa_aead_set_nonce( operation, nonce, required_nonce_size );
 
 exit: