Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+3 -2
+2 -1
drivers/hsi/clients/ssi_protocol.c
··· 114 114 * @netdev: Phonet network device 115 115 * @txqueue: TX data queue 116 116 * @cmdqueue: Queue of free commands 117 + * @work: &struct work_struct for scheduled work 117 118 * @cl: HSI client own reference 118 119 * @link: Link for ssip_list 119 - * @tx_usecount: Refcount to keep track the slaves that use the wake line 120 + * @tx_usecnt: Refcount to keep track the slaves that use the wake line 120 121 * @channel_id_cmd: HSI channel id for command stream 121 122 * @channel_id_data: HSI channel id for data stream 122 123 */
+1 -1
drivers/hsi/hsi_core.c
··· 48 48 return false; 49 49 } 50 50 51 - static struct bus_type hsi_bus_type = { 51 + static const struct bus_type hsi_bus_type = { 52 52 .name = "hsi", 53 53 .dev_groups = hsi_bus_dev_groups, 54 54 .match = hsi_bus_match,