]>
git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/acpi/pcc.h
2 * PCC (Platform Communications Channel) methods
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; version 2
13 #include <linux/mailbox_controller.h>
14 #include <linux/mailbox_client.h>
17 extern struct mbox_chan
*pcc_mbox_request_channel(struct mbox_client
*cl
,
19 extern void pcc_mbox_free_channel(struct mbox_chan
*chan
);
21 static inline struct mbox_chan
*pcc_mbox_request_channel(struct mbox_client
*cl
,
24 return ERR_PTR(-ENODEV
);
26 static inline void pcc_mbox_free_channel(struct mbox_chan
*chan
) { }