| 1411 | } |
| 1412 | |
| 1413 | static int cbfs_add_integer(void) |
| 1414 | { |
| 1415 | if (!param.u64val_assigned) { |
| 1416 | ERROR("You need to specify a value to write.\n"); |
| 1417 | return 1; |
| 1418 | } |
| 1419 | return cbfs_add_integer_component(param.name, |
| 1420 | param.u64val, |
| 1421 | param.baseaddress, |
| 1422 | param.headeroffset); |
| 1423 | } |
| 1424 | |
| 1425 | static int cbfs_remove(void) |
| 1426 | { |
nothing calls this directly
no test coverage detected