Page MenuHomeFreeBSD

MMCCAM - Convert driver to use the mmc_sim interface
ClosedPublic

Authored by hlh_restart.be on Sep 27 2021, 9:53 AM.
Tags
None
Referenced Files
F156922408: D32154.id101409.diff
Sun, May 17, 9:24 AM
F156906750: D32154.id96004.diff
Sun, May 17, 6:27 AM
F156892433: D32154.id96004.diff
Sun, May 17, 3:26 AM
F156886979: D32154.id101838.diff
Sun, May 17, 2:18 AM
F156882222: D32154.id102353.diff
Sun, May 17, 1:37 AM
F156851306: D32154.id95774.diff
Sat, May 16, 9:58 PM
F156841718: D32154.id.diff
Sat, May 16, 8:27 PM
Unknown Object (File)
Wed, May 13, 6:33 PM
Subscribers

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 41864
Build 38752: arc lint + arc unit

Event Timeline

Generally I think this looks good, modulo the comment about comments on #endif.

sys/dev/rtsx/rtsx.c
657

Here and elsewhere: style(9) says that this is incorrect. The comment at the endif line should match the #if line.

#ifdef COMPAT_43
/* A large region here, or other conditional code. */
#else /* !COMPAT_43 */
/* Or here. */
#endif /* COMPAT_43 */
  • Correct style(9): comments on #endif
  • Don't display pci_read_config() errors during rtsx_init()
  • Add CTLFLAG_STATS for read and write counters
This revision is now accepted and ready to land.Jan 13 2022, 2:32 PM
  • Replace FreeBSD by __FreeBSD_version
This revision now requires review to proceed.Jan 24 2022, 9:35 AM