Module Name: src
Committed By: martin
Date: Tue Jan 28 12:22:32 UTC 2014
Modified Files:
src/sys/arch/arm/xscale: pxa2x0_lcd.c
Log Message:
Remove unused variables
To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/arm/xscale/pxa2x0_lcd.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/xscale/pxa2x0_lcd.c
diff -u src/sys/arch/arm/xscale/pxa2x0_lcd.c:1.33 src/sys/arch/arm/xscale/pxa2x0_lcd.c:1.34
--- src/sys/arch/arm/xscale/pxa2x0_lcd.c:1.33 Wed Jan 11 21:15:46 2012
+++ src/sys/arch/arm/xscale/pxa2x0_lcd.c Tue Jan 28 12:22:32 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: pxa2x0_lcd.c,v 1.33 2012/01/11 21:15:46 macallan Exp $ */
+/* $NetBSD: pxa2x0_lcd.c,v 1.34 2014/01/28 12:22:32 martin Exp $ */
/*
* Copyright (c) 2002 Genetec Corporation. All rights reserved.
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pxa2x0_lcd.c,v 1.33 2012/01/11 21:15:46 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pxa2x0_lcd.c,v 1.34 2014/01/28 12:22:32 martin Exp $");
#include "opt_pxa2x0_lcd.h"
@@ -475,8 +475,6 @@ int
pxa2x0_lcd_new_screen(struct pxa2x0_lcd_softc *sc, int depth,
struct pxa2x0_lcd_screen **scrpp)
{
- bus_space_tag_t iot;
- bus_space_handle_t ioh;
bus_dma_tag_t dma_tag;
const struct lcd_panel_geometry *geometry;
struct pxa2x0_lcd_screen *scr = NULL;
@@ -487,8 +485,6 @@ pxa2x0_lcd_new_screen(struct pxa2x0_lcd_
struct lcd_dma_descriptor *desc;
paddr_t buf_pa, desc_pa;
- iot = sc->iot;
- ioh = sc->ioh;
dma_tag = sc->dma_tag;
geometry = sc->geometry;