From 068de9c0a302aba21e4d6a27eb6d330375ff2d2f Mon Sep 17 00:00:00 2001 From: Francisco Jerez Date: Sun, 21 Dec 2008 16:02:57 +0100 Subject: Allocate crtc->funcs and output->funcs in the heap. --- src/smi_crtc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/smi_crtc.h') diff --git a/src/smi_crtc.h b/src/smi_crtc.h index 951f78f..8744379 100644 --- a/src/smi_crtc.h +++ b/src/smi_crtc.h @@ -47,13 +47,13 @@ typedef struct { /* smi_crtc.c */ /* Initialize the xf86CrtcFuncsRec with functions common to all the hardware */ -void SMI_CrtcFuncsInit_base(xf86CrtcFuncsPtr crtcFuncs, SMICrtcPrivatePtr crtcPriv); +void SMI_CrtcFuncsInit_base(xf86CrtcFuncsPtr* crtcFuncs, SMICrtcPrivatePtr* crtcPriv); /* Create and initialize the display controllers. */ Bool SMI_CrtcPreInit(ScrnInfoPtr pScrn); /* smi_output.c */ /* Initialize the xf86OutputFuncsRec with functions common to all the hardware */ -void SMI_OutputFuncsInit_base(xf86OutputFuncsPtr outputFuncs); +void SMI_OutputFuncsInit_base(xf86OutputFuncsPtr* outputFuncs); /* Create and initialize the video outputs. */ Bool SMI_OutputPreInit(ScrnInfoPtr pScrn); -- cgit v1.2.3