TI-Feature: platform_base TI-Tree: git://git.ti.com/~rrnayak/ti-linux-kernel/platform-linux-feature-tree.git TI-Branch: platform-ti-linux-4.19.y * 'platform-ti-linux-4.19.y' of git://git.ti.com/~rrnayak/ti-linux-kernel/platform-linux-feature-tree: dmaengine: ti: k3-navss-udma: Add missing MODULE_ definitions crypto: sa2ul: Intialize variables and fix build warning Signed-off-by: LCPD Auto Merger <lcpd_integration@list.ti.com>
@@ -619,7 +619,7 @@ int sa_init_sc(struct sa_ctx_info *ctx, const u8 *enc_key,
struct algo_data *ad, u8 enc, u32 *swinfo, bool auth_req)
{
int use_enc = 0;
- int enc_sc_offset, auth_sc_offset;
+ int enc_sc_offset = 0, auth_sc_offset = 0;
u8 *sc_buf = ctx->sc;
u16 sc_id = ctx->sc_id;
u16 aad_len = 0; /* Currently not supporting AEAD algo */
@@ -1104,3 +1104,7 @@ void k3_nav_udmax_rx_put_irq(struct k3_nav_udmax_rx_channel *rx_chn,
flow->virq);
}
EXPORT_SYMBOL_GPL(k3_nav_udmax_rx_put_irq);
+
+MODULE_DESCRIPTION("TI K3 UDMA glue layer for non DMAengine clients");
+MODULE_AUTHOR("Grygorii Strashko <grygorii.strashko@ti.com>");
+MODULE_LICENSE("GPL v2");