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:
Vineeth Vijayan
2024-03-26 15:12:51 +01:00
committed by Jan Höppner
parent c0fc21efb3
commit 4c2bfb1d47
3 changed files with 8 additions and 8 deletions

View File

@@ -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;

View File

@@ -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 */

View File

@@ -13,7 +13,7 @@
#include <string.h>
#include <ctype.h>
#include "site.h"
#include "zdev.h"
#include "zdev_id.h"
#define SYSINFO "/proc/sysinfo"