From 094f090e7f647daca1ff4c522899def7eae6c6b3 Mon Sep 17 00:00:00 2001 From: sam Date: Sun, 8 Mar 2009 23:45:56 +0000 Subject: o mark unexpected callbacks more clearly o unwrap some lines --- sys/arm/xscale/ixp425/ixp425_pci.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'sys/arm') diff --git a/sys/arm/xscale/ixp425/ixp425_pci.c b/sys/arm/xscale/ixp425/ixp425_pci.c index 10f765b..9fb5a74 100644 --- a/sys/arm/xscale/ixp425/ixp425_pci.c +++ b/sys/arm/xscale/ixp425/ixp425_pci.c @@ -97,10 +97,8 @@ static void ixp425_pci_conf_reg_write(struct ixppcib_softc *sc, uint32_t reg, uint32_t data) { - PCI_CSR_WRITE_4(sc, - PCI_CRP_AD_CBE, ((reg & ~3) | COMMAND_CRP_WRITE)); - PCI_CSR_WRITE_4(sc, - PCI_CRP_AD_WDATA, data); + PCI_CSR_WRITE_4(sc, PCI_CRP_AD_CBE, ((reg & ~3) | COMMAND_CRP_WRITE)); + PCI_CSR_WRITE_4(sc, PCI_CRP_AD_WDATA, data); } static int @@ -325,7 +323,8 @@ ixppcib_activate_resource(device_t bus, device_t child, int type, int rid, struct resource *r) { - device_printf(bus, "%s called activate_resource\n", device_get_nameunit(child)); + device_printf(bus, "%s called activate_resource (unexpected)\n", + device_get_nameunit(child)); return (ENXIO); } @@ -334,7 +333,8 @@ ixppcib_deactivate_resource(device_t bus, device_t child, int type, int rid, struct resource *r) { - device_printf(bus, "%s called deactivate_resource\n", device_get_nameunit(child)); + device_printf(bus, "%s called deactivate_resource (unexpected)\n", + device_get_nameunit(child)); return (ENXIO); } @@ -343,7 +343,8 @@ ixppcib_release_resource(device_t bus, device_t child, int type, int rid, struct resource *r) { - device_printf(bus, "%s called release_resource\n", device_get_nameunit(child)); + device_printf(bus, "%s called release_resource (unexpected)\n", + device_get_nameunit(child)); return (ENXIO); } -- cgit v1.1