Quoting David Gibson (2017-05-31 20:52:15) > Currently implementations of the RTAS calls related to DRCs are in > spapr_rtas.c. They belong better in spapr_drc.c - that way they're closer > to related code, and we'll be able to make some more things local. > > spapr_rtas.c was intended to contain the RTAS infrastructure and core calls > that don't belong anywhere else, not every RTAS implementation. > > Code motion only.
Technically rtas-get-sensor-state and rtas-set-indicator aren't specific to DRCs, but looking through the documented indicators/sensors (tables 40 and 42 in LoPAPR v11) it doesn't seem too likely we'll ever implement any others so the move seems reasonable. > > Signed-off-by: David Gibson <da...@gibson.dropbear.id.au> > --- > hw/ppc/spapr_drc.c | 322 > ++++++++++++++++++++++++++++++++++++++++++++++++++-- > hw/ppc/spapr_rtas.c | 304 ------------------------------------------------- > 2 files changed, 315 insertions(+), 311 deletions(-)