Skip to content

Commit

Permalink
[PATCH] w1 exports
Browse files Browse the repository at this point in the history
From: Andrew Morton <[email protected]>

WARNING: "w1_read_block" [drivers/w1/slaves/w1_therm.ko] undefined!
WARNING: "w1_write_8" [drivers/w1/slaves/w1_therm.ko] undefined!
WARNING: "w1_reset_select_slave" [drivers/w1/slaves/w1_therm.ko] undefined!
WARNING: "w1_reset_bus" [drivers/w1/slaves/w1_ds2433.ko] undefined!
WARNING: "w1_write_8" [drivers/w1/slaves/w1_ds2433.ko] undefined!
WARNING: "w1_read_block" [drivers/w1/slaves/w1_ds2433.ko] undefined!
WARNING: "w1_write_block" [drivers/w1/slaves/w1_ds2433.ko] undefined!
WARNING: "w1_reset_select_slave" [drivers/w1/slaves/w1_ds2433.ko] undefined!

Cc: Evgeniy Polyakov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Andrew Morton authored and gregkh committed Jun 22, 2006
1 parent abd52a1 commit 339f072
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions drivers/w1/w1_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include <linux/delay.h>
#include <linux/moduleparam.h>
#include <linux/module.h>

#include "w1.h"
#include "w1_log.h"
Expand Down Expand Up @@ -107,6 +108,7 @@ void w1_write_8(struct w1_master *dev, u8 byte)
for (i = 0; i < 8; ++i)
w1_touch_bit(dev, (byte >> i) & 0x1);
}
EXPORT_SYMBOL_GPL(w1_write_8);


/**
Expand Down Expand Up @@ -207,6 +209,7 @@ void w1_write_block(struct w1_master *dev, const u8 *buf, int len)
for (i = 0; i < len; ++i)
w1_write_8(dev, buf[i]);
}
EXPORT_SYMBOL_GPL(w1_write_block);

/**
* Reads a series of bytes.
Expand All @@ -231,6 +234,7 @@ u8 w1_read_block(struct w1_master *dev, u8 *buf, int len)

return ret;
}
EXPORT_SYMBOL_GPL(w1_read_block);

/**
* Issues a reset bus sequence.
Expand All @@ -256,6 +260,7 @@ int w1_reset_bus(struct w1_master *dev)

return result;
}
EXPORT_SYMBOL_GPL(w1_reset_bus);

u8 w1_calc_crc8(u8 * data, int len)
{
Expand All @@ -266,6 +271,7 @@ u8 w1_calc_crc8(u8 * data, int len)

return crc;
}
EXPORT_SYMBOL_GPL(w1_calc_crc8);

void w1_search_devices(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb)
{
Expand Down Expand Up @@ -298,5 +304,4 @@ int w1_reset_select_slave(struct w1_slave *sl)
}
return 0;
}

EXPORT_SYMBOL_GPL(w1_calc_crc8);
EXPORT_SYMBOL_GPL(w1_reset_select_slave);

0 comments on commit 339f072

Please sign in to comment.