Skip to content

Commit 8762608

Browse files
committed
style: fix long lines
Signed-off-by: karaketir16 <osmankaraketir@gmail.com>
1 parent 14e2f0d commit 8762608

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

arch/arm/src/rp23xx/rp23xx_crypto.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,8 @@ static int rp23xx_sha256_add_zero_bytes(
310310
return OK;
311311
}
312312

313-
static int rp23xx_sha256_write_padding(FAR struct rp23xx_sha256_context_s *ctx)
313+
static int rp23xx_sha256_write_padding(
314+
FAR struct rp23xx_sha256_context_s *ctx)
314315
{
315316
uint64_t size;
316317
size_t user_data_size;
@@ -459,7 +460,8 @@ static int rp23xx_newsession(uint32_t *sid, FAR struct cryptoini *cri)
459460
if (i >= g_rp23xx_sesnum)
460461
{
461462
FAR struct rp23xx_crypto_list *new_sessions;
462-
uint32_t new_count = g_rp23xx_sessions == NULL ? 1 : g_rp23xx_sesnum * 2;
463+
uint32_t new_count =
464+
g_rp23xx_sessions == NULL ? 1 : g_rp23xx_sesnum * 2;
463465

464466
new_sessions = kmm_calloc(new_count, sizeof(*new_sessions));
465467
if (new_sessions == NULL)

0 commit comments

Comments
 (0)