mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 07:31:29 +00:00
Samsung mach/soc changes for v6.9
Just cleanups: kerneldoc warning and add missing const to bus_type. -----BEGIN PGP SIGNATURE----- iQJEBAABCgAuFiEE3dJiKD0RGyM7briowTdm5oaLg9cFAmXSSaMQHGtyemtAa2Vy bmVsLm9yZwAKCRDBN2bmhouD14P+D/9SvQSw9DM6dNDpC1fYNbrez3LJ7bUV6v4r jvrGOUMdwXrtaC/7PhmIfPubxMuB2EH14Ni2bawkPk8ouwvXQP16w5PqXZtWJRwN VheiSmbhq20PQg2xf3YrymUVVCxbgVSI9pa2jXE0IFfS4GPyaHADzVtVHlkYvT9c c/fK409KK54A+jm4yjDeAG5nYC+FqVMJqmY8JDDpoXibGlX09d1lFY5X2hf3H14k 8Oc/WInhNMdUccori6ZomJTAJkRH9k9tiHFyjBp/5GA95NgzY+BH6jWCC244V/S+ XcVdthwhYOeUqOOfrFr5uzatr1KIq1JAoBr+yZ1CU1BerRtplmAp02nWB8A8BT4r MlU0N8J79pdgukvEIlt3jCyF9w3BDiNIkrFsq1YYLZzbrzcwMEtWp0cso43ELJnQ uwBlYg9HWDun6XAPxnO9mt+nFnW6TN3LeCQdML7MRpRy71eKkgNl2xAAz/wukLId 2u5UaOGjspUT+Wl1S2gWMNiTrCurXUXSOuN3UeGH+CrXtpmgGdd/duVMen+WEk3B mt/gOwJVmH4CxuYHb/IfYvIpwafXAtKV8EtEBj95oQ8buJS1E4uBo35sIypZzOTT F7w8jRUmBbHsPLHjXQzXi3G6/N89dEeoAgpu0gaH25LlJzjjw9/NIXkwKustr0hE YBznbTCJjA== =kdC0 -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEiK/NIGsWEZVxh/FrYKtH/8kJUicFAmXl1lQACgkQYKtH/8kJ UieZXQ//dOXdrLLA+hpZLRpCMhuB9yTFjgm6jJZL3vfZltoUS7BUMJ8GAa19+m/e cTPPlx3ScSffNSIhrlujVpJtlvC+auSDMtjsTO0G1K2zEtpW+oVEqDtU5NCOYHF9 5syufX8cKSs97UdmfjMMPK0Hs1VaulPN/z92yC+Rjxd7vx+2h2ha7dEjDj0TTc++ cwrgDFWZA4nkWkm8+DyAg08xGbxv1BT+BWoZY7ka5RjnBc7gL7dfhSopS6oebyvo sfaKUoRX3uUemkougvO2IgDFo0v1jYenf1m67pdc/DKJX3XLXDGahUvUfioISBRt WNxodGsC44654D54B0U2+gGlQFwKM7cjFLYaayJ/whxnyFHb6eoEI2QuUJLFLqom W1ZMmWWsX1/y2LInjeIEpCp6Ad6lynSUsovvQ0tWyfmynqwWtKLMSQXyxQK/W4Vw PEIXZUrrr7Ow8EEyK3QAjfuPd9Ndxey0zSWnO7M8LIKKFgHS4N/nPflk+DVPq60T g7yyUVZAaaVLcSWuTfZayS9Bc35MHuKAbZpWrpCJh8aFZwrAN1vGV4QZWS5t/QN7 zJ3x4e0z1GfZOi6sNjX27LtXCwkuAs715iXNN1s2dnclh/Fbf09bArj4emB5D88W Gu4tCw0mH6poFlDlhGIRIAEQnoqMZHm/idEHMG8qf4gpPgsX47g= =Pt0i -----END PGP SIGNATURE----- Merge tag 'samsung-soc-6.9' of https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux into soc/arm Samsung mach/soc changes for v6.9 Just cleanups: kerneldoc warning and add missing const to bus_type. * tag 'samsung-soc-6.9' of https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux: ARM: s3c64xx: make bus_type const ARM: s5pv210: fix pm.c kernel-doc warning Link: https://lore.kernel.org/r/20240218182141.31213-4-krzysztof.kozlowski@linaro.org Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
commit
286fde5485
@ -76,6 +76,6 @@ extern void s3c24xx_init_uartdevs(char *name,
|
||||
struct s3c24xx_uart_resources *res,
|
||||
struct s3c2410_uartcfg *cfg, int no);
|
||||
|
||||
extern struct bus_type s3c6410_subsys;
|
||||
extern const struct bus_type s3c6410_subsys;
|
||||
|
||||
#endif
|
||||
|
@ -57,7 +57,7 @@ void __init s3c6410_init_irq(void)
|
||||
s3c64xx_init_irq(~0 & ~(1 << 7), ~0);
|
||||
}
|
||||
|
||||
struct bus_type s3c6410_subsys = {
|
||||
const struct bus_type s3c6410_subsys = {
|
||||
.name = "s3c6410-core",
|
||||
.dev_name = "s3c6410-core",
|
||||
};
|
||||
|
@ -149,7 +149,7 @@ static struct map_desc s3c_iodesc[] __initdata = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct bus_type s3c64xx_subsys = {
|
||||
static const struct bus_type s3c64xx_subsys = {
|
||||
.name = "s3c64xx-core",
|
||||
.dev_name = "s3c64xx-core",
|
||||
};
|
||||
|
@ -47,7 +47,7 @@ static void s3c_pm_do_save(struct sleep_save *ptr, int count)
|
||||
}
|
||||
|
||||
/**
|
||||
* s3c_pm_do_restore() - restore register values from the save list.
|
||||
* s3c_pm_do_restore_core() - restore register values from the save list.
|
||||
* @ptr: Pointer to an array of registers.
|
||||
* @count: Size of the ptr array.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user