psa: driver: Use header guard style consistently

The file crypto_driver.h was not using the header guard style as other PSA
Crypto header files. Remove the `__` prefix and suffix. Use C-style
comments for the end-of-guard comment.
This commit is contained in:
Jaeden Amero 2018-10-26 11:44:33 +01:00
parent 7632f628d7
commit 4155850dd9

View File

@ -25,8 +25,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __PSA_CRYPTO_DRIVER_H__
#define __PSA_CRYPTO_DRIVER_H__
#ifndef PSA_CRYPTO_DRIVER_H
#define PSA_CRYPTO_DRIVER_H
#include <stddef.h>
#include <stdint.h>
@ -1776,4 +1776,4 @@ struct psa_drv_key_derivation_t {
/**@}*/
#endif // __PSA_CRYPTO_DRIVER_H__
#endif /* PSA_CRYPTO_DRIVER_H */