marvell_yukon: status is actually a uint32.

This commit is contained in:
Jérôme Duval 2012-04-10 22:02:49 +02:00
parent 138f826121
commit 932ed21aea
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ int
HAIKU_CHECK_DISABLE_INTERRUPTS(device_t dev) HAIKU_CHECK_DISABLE_INTERRUPTS(device_t dev)
{ {
struct msk_softc *sc = device_get_softc(dev); struct msk_softc *sc = device_get_softc(dev);
u_int16_t status; uint32_t status;
/* Reading B0_Y2_SP_ISRC2 masks further interrupts. */ /* Reading B0_Y2_SP_ISRC2 masks further interrupts. */
status = CSR_READ_4(sc, B0_Y2_SP_ISRC2); status = CSR_READ_4(sc, B0_Y2_SP_ISRC2);