Module Name: src
Committed By: riastradh
Date: Fri Feb 11 23:48:33 UTC 2022
Modified Files:
src/sys/arch/arm/ti: ti_omapintc.c
Log Message:
arm/ti: Omit needless dv_private assignment in omap2icu_attach.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/ti/ti_omapintc.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/ti/ti_omapintc.c
diff -u src/sys/arch/arm/ti/ti_omapintc.c:1.8 src/sys/arch/arm/ti/ti_omapintc.c:1.9
--- src/sys/arch/arm/ti/ti_omapintc.c:1.8 Wed Jan 27 03:10:20 2021
+++ src/sys/arch/arm/ti/ti_omapintc.c Fri Feb 11 23:48:33 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: ti_omapintc.c,v 1.8 2021/01/27 03:10:20 thorpej Exp $ */
+/* $NetBSD: ti_omapintc.c,v 1.9 2022/02/11 23:48:33 riastradh Exp $ */
/*
* Define the SDP2430 specific information and then include the generic OMAP
* interrupt header.
@@ -29,7 +29,7 @@
#define _INTR_PRIVATE
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ti_omapintc.c,v 1.8 2021/01/27 03:10:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ti_omapintc.c,v 1.9 2022/02/11 23:48:33 riastradh Exp $");
#include <sys/param.h>
#include <sys/evcnt.h>
@@ -260,7 +260,6 @@ omap2icu_attach(device_t parent, device_
INTC_WRITE(sc, n, INTC_MIR_SET, 0xffffffff);
sc->sc_dev = self;
- self->dv_private = sc;
sc->sc_pic.pic_ops = &omap2icu_picops;
sc->sc_pic.pic_maxsources = sc->sc_nbank * 32;