[csrng/rtl] correction for AES quiet equation

Original equation reforming needed fixing.

Signed-off-by: Mark Branstad <mark.branstad@wdc.com>
diff --git a/hw/ip/csrng/rtl/csrng_block_encrypt.sv b/hw/ip/csrng/rtl/csrng_block_encrypt.sv
index 0f5bc1e..ac1d329 100644
--- a/hw/ip/csrng/rtl/csrng_block_encrypt.sv
+++ b/hw/ip/csrng/rtl/csrng_block_encrypt.sv
@@ -178,7 +178,7 @@
 
   // simple aes cipher activity detector
   assign block_encrypt_quiet_o =
-         (cipher_in_valid == aes_pkg::SP2V_LOW) && (cipher_in_ready == aes_pkg::SP2V_LOW) ||
+         ((cipher_in_valid == aes_pkg::SP2V_LOW) || (cipher_in_ready == aes_pkg::SP2V_LOW)) &&
          (cipher_crypt_busy == aes_pkg::SP2V_LOW);
 
 endmodule