diff options
Diffstat (limited to 'src/commonlib/storage')
-rw-r--r-- | src/commonlib/storage/bouncebuf.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/bouncebuf.h | 3 | ||||
-rw-r--r-- | src/commonlib/storage/mmc.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/sd.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/sd_mmc.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/sdhci.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/sdhci_adma.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/sdhci_display.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/storage.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/storage_erase.c | 3 | ||||
-rw-r--r-- | src/commonlib/storage/storage_write.c | 3 |
11 files changed, 22 insertions, 11 deletions
diff --git a/src/commonlib/storage/bouncebuf.c b/src/commonlib/storage/bouncebuf.c index 6bc5cf4103..722a6c8d0b 100644 --- a/src/commonlib/storage/bouncebuf.c +++ b/src/commonlib/storage/bouncebuf.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * Generic bounce buffer implementation */ diff --git a/src/commonlib/storage/bouncebuf.h b/src/commonlib/storage/bouncebuf.h index 6a2e759614..615f73e2f6 100644 --- a/src/commonlib/storage/bouncebuf.h +++ b/src/commonlib/storage/bouncebuf.h @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * Generic bounce buffer implementation */ diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c index 6346c432ba..d822865053 100644 --- a/src/commonlib/storage/mmc.c +++ b/src/commonlib/storage/mmc.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * MultiMediaCard (MMC) and eMMC specific support code * This code is controller independent */ diff --git a/src/commonlib/storage/sd.c b/src/commonlib/storage/sd.c index 1b4bee0b47..a925088afa 100644 --- a/src/commonlib/storage/sd.c +++ b/src/commonlib/storage/sd.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * Secure Digital (SD) card specific support code * This code is controller independent */ diff --git a/src/commonlib/storage/sd_mmc.c b/src/commonlib/storage/sd_mmc.c index c8df33595a..8c0c1f7e1d 100644 --- a/src/commonlib/storage/sd_mmc.c +++ b/src/commonlib/storage/sd_mmc.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * MultiMediaCard (MMC), eMMC and Secure Digital (SD) common initialization * code which brings the card into the standby state. This code is controller * independent. diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c index 47286c54d2..231224c556 100644 --- a/src/commonlib/storage/sdhci.c +++ b/src/commonlib/storage/sdhci.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * Secure Digital (SD) Host Controller interface specific code */ diff --git a/src/commonlib/storage/sdhci_adma.c b/src/commonlib/storage/sdhci_adma.c index 843497116c..285ac0f1ec 100644 --- a/src/commonlib/storage/sdhci_adma.c +++ b/src/commonlib/storage/sdhci_adma.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * Secure Digital (SD) Host Controller interface DMA support code */ diff --git a/src/commonlib/storage/sdhci_display.c b/src/commonlib/storage/sdhci_display.c index 4169f7ec98..6dad33c36e 100644 --- a/src/commonlib/storage/sdhci_display.c +++ b/src/commonlib/storage/sdhci_display.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * Secure Digital (SD) Host Controller interface specific code */ diff --git a/src/commonlib/storage/storage.c b/src/commonlib/storage/storage.c index 8f5a72f248..050d8bfb60 100644 --- a/src/commonlib/storage/storage.c +++ b/src/commonlib/storage/storage.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * MultiMediaCard (MMC), eMMC and Secure Digital (SD) common code which * transitions the card from the standby state to the transfer state. The * common code supports read operations, erase and write operations are in diff --git a/src/commonlib/storage/storage_erase.c b/src/commonlib/storage/storage_erase.c index b01388077e..2425b765d6 100644 --- a/src/commonlib/storage/storage_erase.c +++ b/src/commonlib/storage/storage_erase.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * MultiMediaCard (MMC), eMMC and Secure Digital (SD) erase support code. * This code is controller independent. */ diff --git a/src/commonlib/storage/storage_write.c b/src/commonlib/storage/storage_write.c index edf13fc0a3..f5af6dc663 100644 --- a/src/commonlib/storage/storage_write.c +++ b/src/commonlib/storage/storage_write.c @@ -9,7 +9,8 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + */ +/* * MultiMediaCard (MMC), eMMC and Secure Digital (SD) write support code. * This code is controller independent. */ |