Statistics
| Branch: | Revision:

root / hw / sdhci.h @ d5aea6f3

History | View | Annotate | Download (12.3 kB)

# Date Author Comment
83c9f4ca 03/01/2013 04:01 pm Paolo Bonzini

hw: include hw header files with full paths

Done with this script:

cd hw
for i in `find . -name '*.h' | sed 's/^..//'`; do
echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
done | sed -i -f - `find . -type f`

This is so that paths remain valid as files are moved....

d7dfca08 02/28/2013 08:23 pm Igor Mitsyanko

hw/sdhci: introduce standard SD host controller

Device model for standard SD Host Controller Interface (SDHCI) compliant with
version 2.00 of SD association specification.

Signed-off-by: Peter Crosthwaite <>
Signed-off-by: Igor Mitsyanko <>...