Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 266962
b: refs/heads/master
c: 3d9ead7
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown committed Aug 9, 2011
1 parent e74d721 commit 630ce5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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: be2136e5c99fd5faa655e571b507362b27df1a28
refs/heads/master: 3d9ead7c06e51249a92eb710a892a66601bd7290
14 changes: 7 additions & 7 deletions trunk/include/trace/events/regmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ DEFINE_EVENT(regmap_reg, regmap_reg_read,

DECLARE_EVENT_CLASS(regmap_block,

TP_PROTO(struct device *dev, unsigned int reg, size_t count),
TP_PROTO(struct device *dev, unsigned int reg, int count),

TP_ARGS(dev, reg, count),

TP_STRUCT__entry(
__string( name, dev_name(dev) )
__field( unsigned int, reg )
__field( size_t, count )
__field( int, count )
),

TP_fast_assign(
Expand All @@ -75,33 +75,33 @@ DECLARE_EVENT_CLASS(regmap_block,

TP_printk("%s reg=%x count=%d", __get_str(name),
(unsigned int)__entry->reg,
(size_t)__entry->count)
(int)__entry->count)
);

DEFINE_EVENT(regmap_block, regmap_hw_read_start,

TP_PROTO(struct device *dev, unsigned int reg, size_t count),
TP_PROTO(struct device *dev, unsigned int reg, int count),

TP_ARGS(dev, reg, count)
);

DEFINE_EVENT(regmap_block, regmap_hw_read_done,

TP_PROTO(struct device *dev, unsigned int reg, size_t count),
TP_PROTO(struct device *dev, unsigned int reg, int count),

TP_ARGS(dev, reg, count)
);

DEFINE_EVENT(regmap_block, regmap_hw_write_start,

TP_PROTO(struct device *dev, unsigned int reg, size_t count),
TP_PROTO(struct device *dev, unsigned int reg, int count),

TP_ARGS(dev, reg, count)
);

DEFINE_EVENT(regmap_block, regmap_hw_write_done,

TP_PROTO(struct device *dev, unsigned int reg, size_t count),
TP_PROTO(struct device *dev, unsigned int reg, int count),

TP_ARGS(dev, reg, count)
);
Expand Down

0 comments on commit 630ce5d

Please sign in to comment.