mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	driver core: device.h: make struct bus_type a const *
Now that all users who accessed the bus_type structure in struct device are properly using it as a const *, mark it as such so that no one can modify it going forward anymore. Cc: "Rafael J. Wysocki" <rafael@kernel.org> Link: https://lore.kernel.org/r/20230313182918.1312597-35-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
							parent
							
								
									b18d0a0f92
								
							
						
					
					
						commit
						d492cc2573
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -566,7 +566,7 @@ struct device {
 | 
				
			||||||
	const char		*init_name; /* initial name of the device */
 | 
						const char		*init_name; /* initial name of the device */
 | 
				
			||||||
	const struct device_type *type;
 | 
						const struct device_type *type;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct bus_type	*bus;		/* type of bus device is on */
 | 
						const struct bus_type	*bus;	/* type of bus device is on */
 | 
				
			||||||
	struct device_driver *driver;	/* which driver has allocated this
 | 
						struct device_driver *driver;	/* which driver has allocated this
 | 
				
			||||||
					   device */
 | 
										   device */
 | 
				
			||||||
	void		*platform_data;	/* Platform specific data, device
 | 
						void		*platform_data;	/* Platform specific data, device
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue