Date: Mon, 5 Mar 2007 22:10:56 GMT From: Paolo Pisati <piso@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 115373 for review Message-ID: <200703052210.l25MAuC7062242@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=115373 Change 115373 by piso@piso_newluxor on 2007/03/05 22:10:14 o Wrap at 80 ppc_setup_intr(). o Style(9) ppc_setup_intr() a bit. Affected files ... .. //depot/projects/soc2006/intr_filter/dev/ppc/ppc.c#7 edit Differences ... ==== //depot/projects/soc2006/intr_filter/dev/ppc/ppc.c#7 (text+ko) ==== @@ -1962,7 +1962,7 @@ */ int ppc_setup_intr(device_t bus, device_t child, struct resource *r, int flags, - driver_filter_t *filt, void (*ihand)(void *), void *arg, void **cookiep) + driver_filter_t *filt, void (*ihand)(void *), void *arg, void **cookiep) { int error; struct ppc_data *ppc = DEVTOSOFTC(bus); @@ -1982,9 +1982,12 @@ ppc->ppc_registered = 0; } - /* pass registration to the upper layer, ignore the incoming resource */ + /* + * pass registration to the upper layer, ignore the incoming + * resource + */ return (BUS_SETUP_INTR(device_get_parent(bus), child, - r, flags, filt, ihand, arg, cookiep)); + r, flags, filt, ihand, arg, cookiep)); } /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200703052210.l25MAuC7062242>