crypto/dpaa2_sec: fix build with GCC 7
authorThomas Monjalon <thomas@monjalon.net>
Mon, 29 Jan 2018 22:20:40 +0000 (23:20 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 29 Jan 2018 22:38:24 +0000 (23:38 +0100)
commit2ab9a9483196214e59cf4c5f1d2c178d86a4d1d8
tree28c32376f0ee36a47d0bc196582ec2d751db393c
parentd961c374394335587b7632475cd3823d4a30e272
crypto/dpaa2_sec: fix build with GCC 7

Seen with GCC 7.2.0, a switch fall through is detected and
cannot be fixed with a fall-through comment or attribute:

drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h:89:6: error:
this statement may fall through [-Werror=implicit-fallthrough=]
   if (rta_sec_era < RTA_SEC_ERA_2)
      ^

The check is disabled in dpaa2_sec Makefile but not in dpaa_sec Makefile
which uses source code shared by dpaa2_sec.

The workaround is to disable the check at the beginning of the file.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
drivers/crypto/dpaa2_sec/hw/rta/operation_cmd.h