mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
HSI changes for the 6.9 series
* fix kernel-doc warning * make hsi_bus_type const -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEE72YNB0Y/i3JqeVQT2O7X88g7+poFAmXyH8EACgkQ2O7X88g7 +pozfg/9HAYe69cxPDSzuwvaiNqn1mJ4xGq2knT/j141hpHrYMBfPb+fXu/VrvTs 2GQRRANWLYwxpKDf51ZTiYag8BwodrdUBNXI/dv+A6/sSh7CzFdcaq8Wohcx3wSl LytB6IF6DSZqcyjaiIctOE3hoJSQ+1GCzeIw/3kDbqKqA+u5rIHqlItfAMIdXGyM qWxZAragI96SCSb6WKkhksZXZ8DyQ4lQJPrDSuJ48JZhMGaaGL8TIpo8j76KjHfI VAxSQcLVGwQi0HNOl+ow3Xwd/gAnkAaOYVqXTzGhP+kLNW/Q0FoOBqs0JvCOkvez s4EddfyjukXx/FcJ72ZsfbNiwx/Y5k3I3DwDtMty6p5qDzpBvOsADkjid73URNRN KW8n0BKL3aFH0rtlNtODk5Yqw2CpvMda8fY3KFmJ4AkZSAoF9GBIUpn6xKAqqn/u 3KM9BP/5Cp2FqavdWxqKXVWSoLFMYgdD+JPSsQtI/e5EocpNnsgnNzu14kV6C9Ql adWdxFhv6ICy0Qd7f3rvIa0RSe0AfNV0hLwUDUcsceEF/MzZmWP4WqTlxB7wzdh1 TTlLfbMti0Rl2X8l/061oCHxmk6ZoD77qj/N9lqSxUfksUoiV3X7aHkFB3/E7s9a yyPsfVVAps681nwJuVg/+0Z9kw/RQerNVAfTRBOcgs9kC9ncEdg= =kB2N -----END PGP SIGNATURE----- Merge tag 'hsi-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi Pull HSI updates from Sebastian Reichel: - fix kernel-doc warning - make hsi_bus_type const [ And as always I had to remind myself about the acronyn, so to avoid that for others: "HSI" is High Speed Synchronous Serial Interface, because of course it is. - Linus ] * tag 'hsi-for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi: HSI: ssi_protocol: fix struct members kernel-doc warnings hsi: hsi_core: make hsi_bus_type const
This commit is contained in:
commit
80d80de4b7
@ -114,9 +114,10 @@ enum {
|
||||
* @netdev: Phonet network device
|
||||
* @txqueue: TX data queue
|
||||
* @cmdqueue: Queue of free commands
|
||||
* @work: &struct work_struct for scheduled work
|
||||
* @cl: HSI client own reference
|
||||
* @link: Link for ssip_list
|
||||
* @tx_usecount: Refcount to keep track the slaves that use the wake line
|
||||
* @tx_usecnt: Refcount to keep track the slaves that use the wake line
|
||||
* @channel_id_cmd: HSI channel id for command stream
|
||||
* @channel_id_data: HSI channel id for data stream
|
||||
*/
|
||||
|
@ -48,7 +48,7 @@ static int hsi_bus_match(struct device *dev, struct device_driver *driver)
|
||||
return false;
|
||||
}
|
||||
|
||||
static struct bus_type hsi_bus_type = {
|
||||
static const struct bus_type hsi_bus_type = {
|
||||
.name = "hsi",
|
||||
.dev_groups = hsi_bus_dev_groups,
|
||||
.match = hsi_bus_match,
|
||||
|
Loading…
Reference in New Issue
Block a user