diff options
author | David Vrabel <david.vrabel@csr.com> | 2008-11-17 15:24:14 +0000 |
---|---|---|
committer | David Vrabel <david.vrabel@csr.com> | 2008-11-17 15:24:14 +0000 |
commit | e17be2b2a95b43fe0d5878adf330701bb7a77115 (patch) | |
tree | 90810d325dcdbf6fb73c16a6324cefa42a3e2e16 /include/linux/uwb.h | |
parent | 58be81ed301d96045bca2b85f3b838910efcfde4 (diff) |
uwb: add pal parameter to new reservation callback
The pal parameter allows PALs to retrieve their PAL-specific data
structure.
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'include/linux/uwb.h')
-rw-r--r-- | include/linux/uwb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/uwb.h b/include/linux/uwb.h index c4854848999d..effd97998fd1 100644 --- a/include/linux/uwb.h +++ b/include/linux/uwb.h @@ -405,7 +405,7 @@ struct uwb_pal { struct list_head node; const char *name; struct device *device; - void (*new_rsv)(struct uwb_rsv *rsv); + void (*new_rsv)(struct uwb_pal *pal, struct uwb_rsv *rsv); }; void uwb_pal_init(struct uwb_pal *pal); |