Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141563
b: refs/heads/master
c: 1657e32
h: refs/heads/master
i:
  141561: fe44f2a
  141559: 7fb86ee
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 87d78df commit ede6962
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c77e25898523395b56e1d120195e1ad2e3efa14d
refs/heads/master: 1657e325042ffc723182377a47d38ccc7319078f
8 changes: 4 additions & 4 deletions trunk/drivers/staging/comedi/drivers/cb_pcidda.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static const struct comedi_lrange cb_pcidda_ranges = {
* boards in this way is optional, and completely driver-dependent.
* Some drivers use arrays such as this, other do not.
*/
typedef struct cb_pcidda_board_struct {
struct cb_pcidda_board {
const char *name;
char status; // Driver status:
// 0 - tested
Expand All @@ -139,8 +139,8 @@ typedef struct cb_pcidda_board_struct {
int ao_chans;
int ao_bits;
const struct comedi_lrange *ranges;
} cb_pcidda_board;
static const cb_pcidda_board cb_pcidda_boards[] = {
};
static const struct cb_pcidda_board cb_pcidda_boards[] = {
{
name: "pci-dda02/12",
status: 1,
Expand Down Expand Up @@ -206,7 +206,7 @@ MODULE_DEVICE_TABLE(pci, cb_pcidda_pci_table);
/*
* Useful for shorthand access to the particular board structure
*/
#define thisboard ((const cb_pcidda_board *)dev->board_ptr)
#define thisboard ((const struct cb_pcidda_board *)dev->board_ptr)

/* this structure is for data unique to this hardware driver. If
several hardware drivers keep similar information in this structure,
Expand Down

0 comments on commit ede6962

Please sign in to comment.