#ifndef _PPC64_PSERIES_RECONFIG_H#define _PPC64_PSERIES_RECONFIG_H#include <linux/notifier.h>/* * Use this API if your code needs to know about OF device nodes being * added or removed on pSeries systems. */#define PSERIES_RECONFIG_ADD 0x0001#define PSERIES_RECONFIG_REMOVE 0x0002#ifdef CONFIG_PPC_PSERIESexternintpSeries_reconfig_notifier_register(structnotifier_block*);externvoidpSeries_reconfig_notifier_unregister(structnotifier_block*);#else /* !CONFIG_PPC_PSERIES */staticinlineintpSeries_reconfig_notifier_register(structnotifier_block*nb){return0;}staticinlinevoidpSeries_reconfig_notifier_unregister(structnotifier_block*nb){}#endif /* CONFIG_PPC_PSERIES */#endif /* _PPC64_PSERIES_RECONFIG_H */