hw/riscv: sifive_u: Rename serial property get/set functions to a generic name
In prepration to add more properties to this machine, rename the existing serial property get/set functions to a generic name. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 1591625864-31494-11-git-send-email-bmeng.cn@gmail.com Message-Id: <1591625864-31494-11-git-send-email-bmeng.cn@gmail.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
		
							parent
							
								
									5133ed1790
								
							
						
					
					
						commit
						3e9667cdaa
					
				| @ -478,14 +478,16 @@ static void sifive_u_machine_set_start_in_flash(Object *obj, bool value, Error * | ||||
|     s->start_in_flash = value; | ||||
| } | ||||
| 
 | ||||
| static void sifive_u_machine_get_serial(Object *obj, Visitor *v, const char *name, | ||||
|                                 void *opaque, Error **errp) | ||||
| static void sifive_u_machine_get_uint32_prop(Object *obj, Visitor *v, | ||||
|                                              const char *name, void *opaque, | ||||
|                                              Error **errp) | ||||
| { | ||||
|     visit_type_uint32(v, name, (uint32_t *)opaque, errp); | ||||
| } | ||||
| 
 | ||||
| static void sifive_u_machine_set_serial(Object *obj, Visitor *v, const char *name, | ||||
|                                 void *opaque, Error **errp) | ||||
| static void sifive_u_machine_set_uint32_prop(Object *obj, Visitor *v, | ||||
|                                              const char *name, void *opaque, | ||||
|                                              Error **errp) | ||||
| { | ||||
|     visit_type_uint32(v, name, (uint32_t *)opaque, errp); | ||||
| } | ||||
| @ -504,8 +506,8 @@ static void sifive_u_machine_instance_init(Object *obj) | ||||
| 
 | ||||
|     s->serial = OTP_SERIAL; | ||||
|     object_property_add(obj, "serial", "uint32", | ||||
|                         sifive_u_machine_get_serial, | ||||
|                         sifive_u_machine_set_serial, NULL, &s->serial); | ||||
|                         sifive_u_machine_get_uint32_prop, | ||||
|                         sifive_u_machine_set_uint32_prop, NULL, &s->serial); | ||||
|     object_property_set_description(obj, "serial", "Board serial number"); | ||||
| } | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Bin Meng
						Bin Meng