]> sigrok.org Git - libsigrok.git/commitdiff
Slightly more consistent #include-guard naming.
authorUwe Hermann <redacted>
Sat, 15 Jan 2011 13:41:57 +0000 (14:41 +0100)
committerUwe Hermann <redacted>
Sat, 15 Jan 2011 13:48:21 +0000 (14:48 +0100)
hardware/asix-sigma/asix-sigma.h
hardware/link-mso19/link-mso19.h
hardware/zeroplus-logic-cube/analyzer.h
hardware/zeroplus-logic-cube/gl_usb.h
sigrok-proto.h
sigrok.h

index 9af081846083cffdc58b6fb207edfbba36a68e92..78875b114664cc2bdf069f87c1da9ae0390757ea 100644 (file)
@@ -19,8 +19,8 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef ASIX_SIGMA_H
-#define ASIX_SIGMA_H
+#ifndef SIGROK_ASIX_SIGMA_H
+#define SIGROK_ASIX_SIGMA_H
 
 enum sigma_write_register {
        WRITE_CLOCK_SELECT      = 0,
index e7abee0302d68241a15b2d72a35852d7a8a04dee..dddcd8527964a6789b44b64c8b8365a7f3a49608 100644 (file)
@@ -17,8 +17,8 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef LINK_MSO19_H
-#define LINK_MSO19_H
+#ifndef SIGROK_LINK_MSO19_H
+#define SIGROK_LINK_MSO19_H
 
 /* our private per-instance data */
 struct mso {
index 81176bd081445e0992b523943d51b0defe1f65d5..9865a2ed2a903d96ec4769f42ac172d97536521e 100644 (file)
@@ -29,8 +29,8 @@
  *  THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef ANALYZER_H__
-#define ANALYZER_H__
+#ifndef SIGROK_ZEROPLUS_ANALYZER_H
+#define SIGROK_ZEROPLUS_ANALYZER_H
 
 #include <libusb.h>
 
index a18b9991b7183afad50fb6a51c10e4c439e2ae27..921dae8e78588a1274384b819e0e1b5eaade850e 100644 (file)
@@ -29,8 +29,8 @@
  *  THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef GL_H__
-#define GL_G__
+#ifndef SIGROK_ZEROPLUS_GL_H
+#define SIGROK_ZEROPLUS_GL_H
 
 #include <libusb.h>
 
index ed06bd0f4ad428e889425923cc771ca7a71cab29..37d867eda6f3ca2a3be40ec765f821397c9ab1d0 100644 (file)
@@ -17,9 +17,8 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-
-#ifndef SIGROK_PROTO_H_
-#define SIGROK_PROTO_H_
+#ifndef SIGROK_SIGROK_PROTO_H
+#define SIGROK_SIGROK_PROTO_H
 
 int filter_probes(int in_unitsize, int out_unitsize, int *probelist,
                  char *data_in, uint64_t length_in, char **data_out,
@@ -28,7 +27,6 @@ int filter_probes(int in_unitsize, int out_unitsize, int *probelist,
 char *sigrok_samplerate_string(uint64_t samplerate);
 char *sigrok_period_string(uint64_t frequency);
 
-
 /*--- backend.c -------------------------------------------------------------*/
 
 int sigrok_init(void);
@@ -146,5 +144,4 @@ int datastore_destroy(struct datastore *ds);
 void datastore_put(struct datastore *ds, void *data, unsigned int length,
                   int in_unitsize, int *probelist);
 
-
-#endif /* SIGROK_PROTO_H_ */
+#endif
index 1b4552ca0740f0dfe37522a52593cc4a292e1926..26bf9fcc089bf0068e135027fc83d5cd76c159ee 100644 (file)
--- a/sigrok.h
+++ b/sigrok.h
@@ -347,4 +347,5 @@ struct session {
 };
 
 #include "sigrok-proto.h"
+
 #endif