Arm FF-A update for v6.9

Another single and simple update to just constify the ffa_bus_type
 structure similar to other changes done treewide following the driver
 core changes to accomodate the same.
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCAAdFiEEunHlEgbzHrJD3ZPhAEG6vDF+4pgFAmXX+2AACgkQAEG6vDF+
 4ph9fQ/+IgSJ13MyClBrpTcmSgkPc8KIvVI+75kjBeH/OJiqQoiCsQG8MwLHP5u0
 xUW7xFaHOaDwi/hxQUIWwCYXh4kSqxyxnfgCqsPzqrtIvZo5WninYrHbZz9tE7NB
 X4ClY8isNqxJx9R95Eh4N8yf+9LpuFqyPejA0WAQ3x6360DlRqpuIEJjSp0pnW5m
 qK9vTBPKahV+kAfH93EMlDlRL8vb5efpyCAJ1ga3pmJ6adWVmZDP5VGe477OmMbw
 MAMYoZtendw69tlX+L7ZXsUyQKfn85mE/T7iHgkNJiAuOq1fyivnoZlWbWVYnOUG
 riy+nMUSmrP2V+YgRKw/TmqAN6VwAuj5vr4RNgC0V8PybiBY99EEzL3IJ8zgSyJC
 zzUhfh7Zi6lJxcZJPAmfavfvVB/viEXctpwl0mqLd09kiuPtVo/np9jS+gTcYcXj
 3s690CdNTP9pqeVQBdOMQ+s+fmtf5egtmW4+TnN0alKoX0N1RyEnKldomM4eHNhx
 W3RUIk9YBDciL2XNWQ9faEtw1ofFY/WW2KDh6rK0Rylm3en190N1isjPk9so37vK
 oXkoHdVwWbbZGsQTSY6APvtzxfq2K9tc58F0XBSBs2mWq/Pn6YR3nVLMV/N6r/CY
 Fkc/kxyHK54a7I5YpgUvLce0u2P9ZgyWhTVL+1y7ykLq7PW8RJI=
 =dcUt
 -----END PGP SIGNATURE-----
gpgsig -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEEiK/NIGsWEZVxh/FrYKtH/8kJUicFAmXl31IACgkQYKtH/8kJ
 UiesVQ/+O7yIh/hfZHnhnqry32nwN69lKkjwNYBpRvZhfP7BgtM8VV3lfqTOAVHk
 RqYZiu+qJ36iT/8ESdI0EbHytBewEvCjpPhBNgx9hSPAlvgEdniSgi1J4QuY4Kaw
 F3bPwJZQ3Nhc23vcFVT3WYBLUODSpF6h2ByqGykeadAnNwwHBekS0HLgpQXVstoL
 SPZmtMpHPvHtf0pRG1ZxuoDi1JWV6CapMJTkCK+sVuEI6oILPz7ribrNTvJnvwDU
 Qc91ewKBCNX8q8qyEZcekbZGRt0Pa+VvkImOflXgITI9cmSOUCH24XqArTpUUE5k
 ff7q6Cu+9viJkfmxnc6Wd0C4tZMueLngdBfYGU+pynBVNwjzSDuKROl83atv0mV9
 fnZSakl5IlL6yu0FT5emIqb7DCSynpvtUlx/rEijVa/K53aGWUfOjDDiR+j/LweR
 UedppB2i7TbZAcNYygR3VFA1xXMfjV7Mowp7iu7rN9uIhMaiLd+z5v6D0p+hxUOf
 2Ziu0zXYa0vsbJ7p00Du+Iqtp/t+TeIxp8FCVgL9+EZRGfaFj5Jpg/Xt5/6JXVD3
 RPibDDbqsR2KTIl8zlr65dtPr6bDYFNrBqGwIbF8hJTr/44/wIysOf9A5/zRq3X6
 Ke14dzveIaxuwIi9k6D3jQcgL8/llhy6zPKITCskM6AEB7Sb4EM=
 =w0Sv
 -----END PGP SIGNATURE-----

Merge tag 'ffa-update-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into soc/drivers

Arm FF-A update for v6.9

Another single and simple update to just constify the ffa_bus_type
structure similar to other changes done treewide following the driver
core changes to accomodate the same.

* tag 'ffa-update-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux:
  firmware: arm_ffa: Make ffa_bus_type const

Link: https://lore.kernel.org/r/20240223033250.117878-1-sudeep.holla@arm.com
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
Arnd Bergmann 2024-03-04 15:48:38 +01:00
commit 6208050973
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ static struct attribute *ffa_device_attributes_attrs[] = {
};
ATTRIBUTE_GROUPS(ffa_device_attributes);
struct bus_type ffa_bus_type = {
const struct bus_type ffa_bus_type = {
.name = "arm_ffa",
.match = ffa_device_match,
.probe = ffa_device_probe,

View File

@ -209,7 +209,7 @@ bool ffa_device_is_valid(struct ffa_device *ffa_dev) { return false; }
#define module_ffa_driver(__ffa_driver) \
module_driver(__ffa_driver, ffa_register, ffa_unregister)
extern struct bus_type ffa_bus_type;
extern const struct bus_type ffa_bus_type;
/* FFA transport related */
struct ffa_partition_info {