cregit-Linux how code gets into the kernel

Release 4.12 include/linux/mtd/nand_bch.h

/*
 * Copyright © 2011 Ivan Djelic <ivan.djelic@parrot.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This file is the header for the NAND BCH ECC implementation.
 */

#ifndef __MTD_NAND_BCH_H__

#define __MTD_NAND_BCH_H__

struct mtd_info;
struct nand_bch_control;

#if defined(CONFIG_MTD_NAND_ECC_BCH)


static inline int mtd_nand_has_bch(void) { return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic12100.00%1100.00%
Total12100.00%1100.00%

/* * Calculate BCH ecc code */ int nand_bch_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code); /* * Detect and correct bit errors */ int nand_bch_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_ecc, u_char *calc_ecc); /* * Initialize BCH encoder/decoder */ struct nand_bch_control *nand_bch_init(struct mtd_info *mtd); /* * Release BCH encoder/decoder resources */ void nand_bch_free(struct nand_bch_control *nbc); #else /* !CONFIG_MTD_NAND_ECC_BCH */
static inline int mtd_nand_has_bch(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic12100.00%1100.00%
Total12100.00%1100.00%


static inline int nand_bch_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code) { return -1; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic25100.00%1100.00%
Total25100.00%1100.00%


static inline int nand_bch_correct_data(struct mtd_info *mtd, unsigned char *buf, unsigned char *read_ecc, unsigned char *calc_ecc) { return -ENOTSUPP; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic3096.77%150.00%
Boris Brezillon13.23%150.00%
Total31100.00%2100.00%


static inline struct nand_bch_control *nand_bch_init(struct mtd_info *mtd) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic17100.00%1100.00%
Total17100.00%1100.00%


static inline void nand_bch_free(struct nand_bch_control *nbc) {}

Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic11100.00%1100.00%
Total11100.00%1100.00%

#endif /* CONFIG_MTD_NAND_ECC_BCH */ #endif /* __MTD_NAND_BCH_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Ivan Djelic19899.50%150.00%
Boris Brezillon10.50%150.00%
Total199100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.