mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
zdev: rename site.h to zdev.h
Add zdev-specific definitions into a lightweight header file. Rather than creating a new one, transform the existing "site.h" into "zdev.h" to house all generic zdev-specific definitions that needs to be shared between chzdev, lszdev and zdev_id going forward. Signed-off-by: Vineeth Vijayan <vneethv@linux.ibm.com> Reviewed-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
committed by
Jan Höppner
parent
c0fc21efb3
commit
4c2bfb1d47
@@ -15,7 +15,7 @@
|
||||
#include "exit_code.h"
|
||||
#include "hash.h"
|
||||
#include "misc.h"
|
||||
#include "site.h"
|
||||
#include "zdev.h"
|
||||
|
||||
struct subtype;
|
||||
struct setting_list;
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
/*
|
||||
* zdev - Information regarding site-specific configurations used for
|
||||
* zdev tools.
|
||||
* zdev - Minimal header file containing generic definitions utilized by
|
||||
* zdev-tools.
|
||||
*
|
||||
* Copyright IBM Corp. 2023
|
||||
* Copyright IBM Corp. 2024
|
||||
*
|
||||
* s390-tools is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the MIT license. See LICENSE for details.
|
||||
*/
|
||||
|
||||
#ifndef SITE_H
|
||||
#define SITE_H
|
||||
#ifndef ZDEV_H
|
||||
#define ZDEV_H
|
||||
|
||||
/**
|
||||
* Currently zdev supports 10 sites. Which means, zdev support 10 different
|
||||
@@ -28,4 +28,4 @@
|
||||
/* Helper to find the availability of site-configuration */
|
||||
#define dev_site_configured(dev, x) (dev->site_specific[(x)].exists && \
|
||||
!dev->site_specific[(x)].deconfigured)
|
||||
#endif /* SITE_H */
|
||||
#endif /* ZDEV_H */
|
||||
Reference in New Issue
Block a user