Skip to content

Commit

Permalink
crypto: crc32c - Fixed coding style issue
Browse files Browse the repository at this point in the history
Removed coding style issue: space before tabs.

Signed-off-by: Mati Vait <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
mativait authored and herbertx committed Jun 29, 2011
1 parent cd3f1d5 commit fae3664
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crypto/crc32c.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@ static int crc32c_cra_init(struct crypto_tfm *tfm)
static struct shash_alg alg = {
.digestsize = CHKSUM_DIGEST_SIZE,
.setkey = chksum_setkey,
.init = chksum_init,
.update = chksum_update,
.final = chksum_final,
.finup = chksum_finup,
.digest = chksum_digest,
.init = chksum_init,
.update = chksum_update,
.final = chksum_final,
.finup = chksum_finup,
.digest = chksum_digest,
.descsize = sizeof(struct chksum_desc_ctx),
.base = {
.cra_name = "crc32c",
Expand Down

0 comments on commit fae3664

Please sign in to comment.