diff options
| author | Scott Long <scottl@FreeBSD.org> | 2002-08-29 15:06:26 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2002-08-29 15:06:26 +0000 |
| commit | c02a39a15df7a67c8080521f6acf2397d4e5c93e (patch) | |
| tree | 942ba6676756ff72ef45266d1fa8518eb6f83da1 | |
| parent | 872b3fe268b07ca92c2fcaeb408ba7fdab338ef4 (diff) | |
Notes
| -rw-r--r-- | sys/dev/sound/pci/maestro3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/pci/maestro3.c b/sys/dev/sound/pci/maestro3.c index 75ac4f63e52a..ab4e1cb17dcc 100644 --- a/sys/dev/sound/pci/maestro3.c +++ b/sys/dev/sound/pci/maestro3.c @@ -1281,9 +1281,9 @@ m3_pci_suspend(device_t dev) /* Save the state of the ASSP */ for (i = REV_B_CODE_MEMORY_BEGIN; i <= REV_B_CODE_MEMORY_END; i++) - sc->savemem[++index] = m3_rd_assp_code(sc, i); + sc->savemem[index++] = m3_rd_assp_code(sc, i); for (i = REV_B_DATA_MEMORY_BEGIN; i <= REV_B_DATA_MEMORY_END; i++) - sc->savemem[++index] = m3_rd_assp_data(sc, i); + sc->savemem[index++] = m3_rd_assp_data(sc, i); /* Power down the card to D3 state */ m3_power(sc, 3); |
