All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gilad Ben-Yossef <gilad@benyossef.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Ofir Drang <ofir.drang@arm.com>,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	driverdev-devel@linuxdriverproject.org,
	devel@driverdev.osuosl.org
Subject: [PATCH 00/10] staging: ccree: cleanups & fixes
Date: Sun,  3 Dec 2017 13:58:11 +0000	[thread overview]
Message-ID: <1512309503-29766-1-git-send-email-gilad@benyossef.com> (raw)

Another batch of ccree work. Includes the usual mix of mostly cleanups
and one fix. Also includes an updated TODO to reflect recent progress
and removal of interim documentation of device tree strings as the
official string and documentation thereof got blessed into the crypto tree.

Gilad Ben-Yossef (10):
  staging: ccree: remove inline qualifiers
  staging: ccree: remove unproven likely/unlikely
  staging: ccree: remove more unnecessary parentheses
  staging: ccree: fix indentation of var assignment
  staging: ccree: remove braces for single statement blocks
  staging: ccree: remove interim DT docs
  staging: ccree: update TODO list
  staging: ccree: NULLify backup_info when unused
  staging: ccree: fix AEAD func naming convention
  staging: ccree: amend aead func def for readability

 .../devicetree/bindings/crypto/arm-cryptocell.txt  |  27 -
 drivers/staging/ccree/TODO                         |  23 +-
 drivers/staging/ccree/ssi_aead.c                   | 706 ++++++++++-----------
 drivers/staging/ccree/ssi_aead.h                   |   4 +-
 drivers/staging/ccree/ssi_buffer_mgr.c             | 189 +++---
 drivers/staging/ccree/ssi_cipher.c                 |  61 +-
 drivers/staging/ccree/ssi_driver.c                 |  40 +-
 drivers/staging/ccree/ssi_hash.c                   | 105 ++-
 drivers/staging/ccree/ssi_ivgen.c                  |   2 +-
 drivers/staging/ccree/ssi_request_mgr.c            |  33 +-
 drivers/staging/ccree/ssi_sram_mgr.c               |   4 +-
 11 files changed, 541 insertions(+), 653 deletions(-)
 delete mode 100644 drivers/staging/ccree/Documentation/devicetree/bindings/crypto/arm-cryptocell.txt

-- 
2.7.4

WARNING: multiple messages have this Message-ID (diff)
From: Gilad Ben-Yossef <gilad@benyossef.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-crypto@vger.kernel.org, devel@driverdev.osuosl.org,
	driverdev-devel@linuxdriverproject.org,
	linux-kernel@vger.kernel.org, Ofir Drang <ofir.drang@arm.com>
Subject: [PATCH 00/10] staging: ccree: cleanups & fixes
Date: Sun,  3 Dec 2017 13:58:11 +0000	[thread overview]
Message-ID: <1512309503-29766-1-git-send-email-gilad@benyossef.com> (raw)

Another batch of ccree work. Includes the usual mix of mostly cleanups
and one fix. Also includes an updated TODO to reflect recent progress
and removal of interim documentation of device tree strings as the
official string and documentation thereof got blessed into the crypto tree.

Gilad Ben-Yossef (10):
  staging: ccree: remove inline qualifiers
  staging: ccree: remove unproven likely/unlikely
  staging: ccree: remove more unnecessary parentheses
  staging: ccree: fix indentation of var assignment
  staging: ccree: remove braces for single statement blocks
  staging: ccree: remove interim DT docs
  staging: ccree: update TODO list
  staging: ccree: NULLify backup_info when unused
  staging: ccree: fix AEAD func naming convention
  staging: ccree: amend aead func def for readability

 .../devicetree/bindings/crypto/arm-cryptocell.txt  |  27 -
 drivers/staging/ccree/TODO                         |  23 +-
 drivers/staging/ccree/ssi_aead.c                   | 706 ++++++++++-----------
 drivers/staging/ccree/ssi_aead.h                   |   4 +-
 drivers/staging/ccree/ssi_buffer_mgr.c             | 189 +++---
 drivers/staging/ccree/ssi_cipher.c                 |  61 +-
 drivers/staging/ccree/ssi_driver.c                 |  40 +-
 drivers/staging/ccree/ssi_hash.c                   | 105 ++-
 drivers/staging/ccree/ssi_ivgen.c                  |   2 +-
 drivers/staging/ccree/ssi_request_mgr.c            |  33 +-
 drivers/staging/ccree/ssi_sram_mgr.c               |   4 +-
 11 files changed, 541 insertions(+), 653 deletions(-)
 delete mode 100644 drivers/staging/ccree/Documentation/devicetree/bindings/crypto/arm-cryptocell.txt

-- 
2.7.4

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

             reply	other threads:[~2017-12-03 13:59 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-03 13:58 Gilad Ben-Yossef [this message]
2017-12-03 13:58 ` [PATCH 00/10] staging: ccree: cleanups & fixes Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 01/10] staging: ccree: remove inline qualifiers Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-04  9:36   ` Dan Carpenter
2017-12-07  7:00     ` Gilad Ben-Yossef
2017-12-07  8:28       ` Dan Carpenter
2017-12-03 13:58 ` [PATCH 02/10] staging: ccree: remove unproven likely/unlikely Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 03/10] staging: ccree: remove more unnecessary parentheses Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 04/10] staging: ccree: fix indentation of var assignment Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 05/10] staging: ccree: remove braces for single statement blocks Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 06/10] staging: ccree: remove interim DT docs Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 07/10] staging: ccree: update TODO list Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 08/10] staging: ccree: NULLify backup_info when unused Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 09/10] staging: ccree: fix AEAD func naming convention Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58 ` [PATCH 10/10] staging: ccree: amend aead func def for readability Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-03 13:58   ` Gilad Ben-Yossef
2017-12-04  9:42 ` [PATCH 00/10] staging: ccree: cleanups & fixes Dan Carpenter
2017-12-04  9:42   ` Dan Carpenter
2017-12-04  9:42   ` Dan Carpenter
2017-12-14 14:02 Gilad Ben-Yossef
2017-12-14 14:02 ` Gilad Ben-Yossef

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1512309503-29766-1-git-send-email-gilad@benyossef.com \
    --to=gilad@benyossef.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=driverdev-devel@linuxdriverproject.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ofir.drang@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.