Skip to content

Commit

Permalink
ppc/xive: fix remaining XiveFabric names
Browse files Browse the repository at this point in the history
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
  • Loading branch information
legoater authored and dgibson committed Feb 4, 2019
1 parent 6a9938a commit 6bf6f3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions hw/intc/xive.c
Expand Up @@ -1576,9 +1576,9 @@ static const TypeInfo xive_end_source_info = {
};

/*
* XIVE Fabric
* XIVE Notifier
*/
static const TypeInfo xive_fabric_info = {
static const TypeInfo xive_notifier_info = {
.name = TYPE_XIVE_NOTIFIER,
.parent = TYPE_INTERFACE,
.class_size = sizeof(XiveNotifierClass),
Expand All @@ -1587,7 +1587,7 @@ static const TypeInfo xive_fabric_info = {
static void xive_register_types(void)
{
type_register_static(&xive_source_info);
type_register_static(&xive_fabric_info);
type_register_static(&xive_notifier_info);
type_register_static(&xive_router_info);
type_register_static(&xive_end_source_info);
type_register_static(&xive_tctx_info);
Expand Down
2 changes: 1 addition & 1 deletion include/hw/ppc/xive.h
Expand Up @@ -145,7 +145,7 @@
#include "hw/ppc/xive_regs.h"

/*
* XIVE Fabric (Interface between Source and Router)
* XIVE Notifier (Interface between Source and Router)
*/

typedef struct XiveNotifier {
Expand Down

0 comments on commit 6bf6f3a

Please sign in to comment.