Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194457
b: refs/heads/master
c: 50f5631
h: refs/heads/master
i:
  194455: 9a0d64b
v: v3
  • Loading branch information
Sujith authored and John W. Linville committed Apr 16, 2010
1 parent f9dc836 commit 0f7a393
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 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: fcb9392ff7ccb010818f3609420fd5416f6ca22e
refs/heads/master: 50f56316aed044e42c1bcd7572926e80aac9af46
14 changes: 13 additions & 1 deletion trunk/drivers/net/wireless/ath/ath.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,21 @@ struct ath_regulatory {
struct reg_dmn_pair_mapping *regpair;
};

/**
* struct ath_ops - Register read/write operations
*
* @read: Register read
* @write: Register write
* @enable_write_buffer: Enable multiple register writes
* @disable_write_buffer: Disable multiple register writes
* @write_flush: Flush buffered register writes
*/
struct ath_ops {
unsigned int (*read)(void *, u32 reg_offset);
void (*write)(void *, u32 val, u32 reg_offset);
void (*write)(void *, u32 val, u32 reg_offset);
void (*enable_write_buffer)(void *);
void (*disable_write_buffer)(void *);
void (*write_flush) (void *);
};

struct ath_common;
Expand Down

0 comments on commit 0f7a393

Please sign in to comment.