Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 /*
0003  *  Pvpanic Device Support
0004  *
0005  *  Copyright (C) 2021 Oracle.
0006  */
0007 
0008 #ifndef PVPANIC_H_
0009 #define PVPANIC_H_
0010 
0011 struct pvpanic_instance {
0012     void __iomem *base;
0013     unsigned int capability;
0014     unsigned int events;
0015     struct list_head list;
0016 };
0017 
0018 int devm_pvpanic_probe(struct device *dev, struct pvpanic_instance *pi);
0019 
0020 #endif /* PVPANIC_H_ */