From: Bill Pemberton Date: Tue, 17 Mar 2009 02:17:54 +0000 (-0400) Subject: Staging: comedi: Remove dnp_private_data typedef X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=8532530040c05ab60e7d83c705713ef2629cd3bb;p=deliverable%2Flinux.git Staging: comedi: Remove dnp_private_data typedef Signed-off-by: Bill Pemberton Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/ssv_dnp.c b/drivers/staging/comedi/drivers/ssv_dnp.c index 8965df7a93cb..098b7b098828 100644 --- a/drivers/staging/comedi/drivers/ssv_dnp.c +++ b/drivers/staging/comedi/drivers/ssv_dnp.c @@ -72,9 +72,11 @@ static const dnp_board dnp_boards[] = { /* we only support one DNP 'board' */ #define thisboard ((const dnp_board *)dev->board_ptr) /* This structure is for data unique to the DNP driver --------------------- */ -typedef struct { +struct dnp_private_data { + // -} dnp_private_data; +}; + /* Shorthand macro for faster access to the private data ------------------- */ #define devpriv ((dnp_private *)dev->private) @@ -131,7 +133,7 @@ static int dnp_attach(struct comedi_device * dev, struct comedi_devconfig * it) /* Allocate the private structure area. alloc_private() is a convenient */ /* macro defined in comedidev.h. */ - if (alloc_private(dev, sizeof(dnp_private_data)) < 0) + if (alloc_private(dev, sizeof(struct dnp_private_data)) < 0) return -ENOMEM; /* Allocate the subdevice structures. alloc_subdevice() is a convenient */